( obj )
| 63 | } |
| 64 | |
| 65 | function isArrayLike( obj ) { |
| 66 | |
| 67 | var length = !!obj && obj.length, |
| 68 | type = toType( obj ); |
| 69 | |
| 70 | if ( typeof obj === "function" || isWindow( obj ) ) { |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | return type === "array" || length === 0 || |
| 75 | typeof length === "number" && length > 0 && ( length - 1 ) in obj; |
| 76 | } |
| 77 | |
| 78 | var document$1 = window.document; |
| 79 |
no test coverage detected