All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.node_modules.jquery.src.traversing.var.siblings.js Maven / Gradle / Ivy

There is a newer version: 2.14
Show newest version
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;
};

} );




© 2015 - 2025 Weber Informatics LLC | Privacy Policy