MCPcopy Index your code
hub / github.com/jquery/jquery / elementMatcher

Function elementMatcher

dist-module/jquery.slim.module.js:1992–2004  ·  view source on GitHub ↗
( matchers )

Source from the content-addressed store, hash-verified

1990}
1991
1992function elementMatcher( matchers ) {
1993 return matchers.length > 1 ?
1994 function( elem, context, xml ) {
1995 var i = matchers.length;
1996 while ( i-- ) {
1997 if ( !matchers[ i ]( elem, context, xml ) ) {
1998 return false;
1999 }
2000 }
2001 return true;
2002 } :
2003 matchers[ 0 ];
2004}
2005
2006function multipleContexts( selector, contexts, results ) {
2007 var i = 0,

Callers 1

matcherFromTokensFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected