(errors)
| 74784 | var arrLength = arr.length; |
| 74785 | |
| 74786 | function count(errors) { |
| 74787 | results.push.apply(results, errors); |
| 74788 | total++; |
| 74789 | |
| 74790 | if (total === arrLength) { |
| 74791 | callback(results); |
| 74792 | } |
| 74793 | } |
| 74794 | |
| 74795 | arr.forEach(function (a) { |
| 74796 | func(a, count); |
nothing calls this directly
no test coverage detected
searching dependent graphs…