(errors)
| 74802 | var arrLength = arr.length; |
| 74803 | |
| 74804 | function next(errors) { |
| 74805 | if (errors && errors.length) { |
| 74806 | callback(errors); |
| 74807 | return; |
| 74808 | } |
| 74809 | |
| 74810 | var original = index; |
| 74811 | index = index + 1; |
| 74812 | |
| 74813 | if (original < arrLength) { |
| 74814 | func(arr[original], next); |
| 74815 | } else { |
| 74816 | callback([]); |
| 74817 | } |
| 74818 | } |
| 74819 | |
| 74820 | next([]); |
| 74821 | } |
no test coverage detected
searching dependent graphs…