( obj )
| 77 | } |
| 78 | |
| 79 | function isArrayLike( obj ) { |
| 80 | |
| 81 | var length = !!obj && obj.length, |
| 82 | type = toType( obj ); |
| 83 | |
| 84 | if ( typeof obj === "function" || isWindow( obj ) ) { |
| 85 | return false; |
| 86 | } |
| 87 | |
| 88 | return type === "array" || length === 0 || |
| 89 | typeof length === "number" && length > 0 && ( length - 1 ) in obj; |
| 90 | } |
| 91 | |
| 92 | var document$1 = window.document; |
| 93 |
no test coverage detected