UNPKG

218 BJavaScriptView Raw
1define( function() {
2
3"use strict";
4
5return function( n, elem ) {
6 var matched = [];
7
8 for ( ; n; n = n.nextSibling ) {
9 if ( n.nodeType === 1 && n !== elem ) {
10 matched.push( n );
11 }
12 }
13
14 return matched;
15};
16
17} );