(arr, item)
| 65 | }; |
| 66 | |
| 67 | var _indexOf = function (arr, item) { |
| 68 | if (arr.indexOf) { |
| 69 | return arr.indexOf(item); |
| 70 | } |
| 71 | for (var i = 0; i < arr.length; i += 1) { |
| 72 | if (arr[i] === item) { |
| 73 | return i; |
| 74 | } |
| 75 | } |
| 76 | return -1; |
| 77 | }; |
| 78 | |
| 79 | //// exported async module functions //// |
| 80 |
no outgoing calls
no test coverage detected
searching dependent graphs…