mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 21:20:07 +02:00
add node modules to repo
This commit is contained in:
17
app/node_modules/jquery/src/traversing/var/siblings.js
generated
vendored
Normal file
17
app/node_modules/jquery/src/traversing/var/siblings.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
};
|
||||
|
||||
} );
|
Reference in New Issue
Block a user