mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 21:20:07 +02:00
remove node_modules
This commit is contained in:
17
app/node_modules/jquery/src/traversing/var/siblings.js
generated
vendored
17
app/node_modules/jquery/src/traversing/var/siblings.js
generated
vendored
@@ -1,17 +0,0 @@
|
||||
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