MCPcopy Index your code
hub / github.com/JsAaron/jQuery / elementMatcher

Function elementMatcher

2.0.3/2.0.3.js:2395–2407  ·  view source on GitHub ↗
( matchers )

Source from the content-addressed store, hash-verified

2393 }
2394
2395 function elementMatcher( matchers ) {
2396 return matchers.length > 1 ?
2397 function( elem, context, xml ) {
2398 var i = matchers.length;
2399 while ( i-- ) {
2400 if ( !matchers[i]( elem, context, xml ) ) {
2401 return false;
2402 }
2403 }
2404 return true;
2405 } :
2406 matchers[0];
2407 }
2408
2409 function condense( unmatched, map, filter, context, xml ) {
2410 var elem,

Callers 1

matcherFromTokensFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected