( list, elem )
| 639 | // Use a stripped-down indexOf as it's faster than native |
| 640 | // http://jsperf.com/thor-indexof-vs-for/5 |
| 641 | indexOf = function( list, elem ) { |
| 642 | var i = 0, |
| 643 | len = list.length; |
| 644 | for ( ; i < len; i++ ) { |
| 645 | if ( list[i] === elem ) { |
| 646 | return i; |
| 647 | } |
| 648 | } |
| 649 | return -1; |
| 650 | }, |
| 651 | |
| 652 | booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", |
| 653 |
no outgoing calls
no test coverage detected