aboutsummaryrefslogtreecommitdiffstats
path: root/src/traversing/var/siblings.js
blob: fe51094bd723e2bd328c6ee9d85b362da9ac24f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
export default function( n, elem ) {
	var matched = [];

	for ( ; n; n = n.nextSibling ) {
		if ( n.nodeType === 1 && n !== elem ) {
			matched.push( n );
		}
	}

	return matched;
}