(arr, iterator)
| 78 | } |
| 79 | |
| 80 | function _arrayEach(arr, iterator) { |
| 81 | var index = -1, |
| 82 | length = arr.length; |
| 83 | |
| 84 | while (++index < length) { |
| 85 | iterator(arr[index], index, arr); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | function _map(arr, iterator) { |
| 90 | var index = -1, |
no test coverage detected