(fn)
| 3435 | |
| 3436 | |
| 3437 | var doParallel = function (fn) { |
| 3438 | return function () { |
| 3439 | var args = Array.prototype.slice.call(arguments); |
| 3440 | return fn.apply(null, [async.each].concat(args)); |
| 3441 | }; |
| 3442 | }; |
| 3443 | var doParallelLimit = function(limit, fn) { |
| 3444 | return function () { |
| 3445 | var args = Array.prototype.slice.call(arguments); |
no outgoing calls
no test coverage detected
searching dependent graphs…