Show More
Commit Description:
use uuid cookie
Commit Description:
use uuid cookie
File last commit:
Show/Diff file:
Action:
node_modules/jquery/src/traversing/var/siblings.js | 17 lines | 218 B | application/javascript | JavascriptLexer |
define( function() {
"use strict";
return function( n, elem ) {
var matched = [];
for ( ; n; n = n.nextSibling ) {
if ( n.nodeType === 1 && n !== elem ) {
matched.push( n );
}
}
return matched;
};
} );