(fn)
| 141 | |
| 142 | |
| 143 | var doParallel = function (fn) { |
| 144 | return function () { |
| 145 | var args = Array.prototype.slice.call(arguments); |
| 146 | return fn.apply(null, [async.forEach].concat(args)); |
| 147 | }; |
| 148 | }; |
| 149 | var doSeries = function (fn) { |
| 150 | return function () { |
| 151 | var args = Array.prototype.slice.call(arguments); |
no outgoing calls
no test coverage detected
searching dependent graphs…