MCPcopy Create free account
hub / github.com/sql-js/sql.js / matcherFromGroupMatchers

Function matcherFromGroupMatchers

documentation/javascript/application.js:5711–5722  ·  view source on GitHub ↗
( matchers )

Source from the content-addressed store, hash-verified

5709}
5710
5711function matcherFromGroupMatchers( matchers ) {
5712 return function( elem ) {
5713 var matcher,
5714 j = 0;
5715 for ( ; (matcher = matchers[j]); j++ ) {
5716 if ( matcher(elem) ) {
5717 return true;
5718 }
5719 }
5720 return false;
5721 };
5722}
5723
5724compile = Sizzle.compile = function( selector, context, xml ) {
5725 var group, i, len,

Callers 1

application.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…