| 527 | } ); |
| 528 | |
| 529 | function isArrayLike( obj ) { |
| 530 | |
| 531 | // Support: iOS 8.2 (not reproducible in simulator) |
| 532 | // `in` check used to prevent JIT error (gh-2145) |
| 533 | // hasOwn isn't used here due to false negatives |
| 534 | // regarding Nodelist length in IE |
| 535 | var length = !!obj && "length" in obj && obj.length, |
| 536 | type = jQuery.type( obj ); |
| 537 | |
| 538 | if ( type === "function" || jQuery.isWindow( obj ) ) { |
| 539 | return false; |
| 540 | } |
| 541 | |
| 542 | return type === "array" || length === 0 || |
| 543 | typeof length === "number" && length > 0 && ( length - 1 ) in obj; |
| 544 | } |
| 545 | var Sizzle = |
| 546 | /*! |
| 547 | * Sizzle CSS Selector Engine v2.2.1 |