( list, elem )
| 608 | // Use a stripped-down indexOf as it's faster than native |
| 609 | // http://jsperf.com/thor-indexof-vs-for/5 |
| 610 | indexOf = function( list, elem ) { |
| 611 | var i = 0, |
| 612 | len = list.length; |
| 613 | for ( ; i < len; i++ ) { |
| 614 | if ( list[i] === elem ) { |
| 615 | return i; |
| 616 | } |
| 617 | } |
| 618 | return -1; |
| 619 | }, |
| 620 | |
| 621 | booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", |
| 622 |
no outgoing calls
no test coverage detected