(arr)
| 69 | }; |
| 70 | |
| 71 | function _isArrayLike(arr) { |
| 72 | return _isArray(arr) || ( |
| 73 | // has a positive integer length property |
| 74 | typeof arr.length === "number" && |
| 75 | arr.length >= 0 && |
| 76 | arr.length % 1 === 0 |
| 77 | ); |
| 78 | } |
| 79 | |
| 80 | function _arrayEach(arr, iterator) { |
| 81 | var index = -1, |
no outgoing calls
no test coverage detected