blob: 3b908d7fdc7d2a2751a13cef7c437002abd11d0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export function siblings( n, elem ) {
var matched = [];
for ( ; n; n = n.nextSibling ) {
if ( n.nodeType === 1 && n !== elem ) {
matched.push( n );
}
}
return matched;
}
|