( matchers )
| 5139 | } |
| 5140 | |
| 5141 | function elementMatcher( matchers ) { |
| 5142 | return matchers.length > 1 ? |
| 5143 | function( elem, context, xml ) { |
| 5144 | var i = matchers.length; |
| 5145 | while ( i-- ) { |
| 5146 | if ( !matchers[i]( elem, context, xml ) ) { |
| 5147 | return false; |
| 5148 | } |
| 5149 | } |
| 5150 | return true; |
| 5151 | } : |
| 5152 | matchers[0]; |
| 5153 | } |
| 5154 | |
| 5155 | function condense( unmatched, map, filter, context, xml ) { |
| 5156 | var elem, |