| 821 | } ); |
| 822 | |
| 823 | function isArrayLike( obj ) { |
| 824 | |
| 825 | // Support: iOS 8.2 (not reproducible in simulator) |
| 826 | // `in` check used to prevent JIT error (gh-2145) |
| 827 | // hasOwn isn't used here due to false negatives |
| 828 | // regarding Nodelist length in IE |
| 829 | var length = !!obj && "length" in obj && obj.length, |
| 830 | type = jQuery.type( obj ); |
| 831 | |
| 832 | if ( type === "function" || jQuery.isWindow( obj ) ) { |
| 833 | return false; |
| 834 | } |
| 835 | |
| 836 | return type === "array" || length === 0 || |
| 837 | typeof length === "number" && length > 0 && ( length - 1 ) in obj; |
| 838 | } |
| 839 | var Sizzle = |
| 840 | /*! |
| 841 | * Sizzle CSS Selector Engine v2.2.1 |