(fn)
| 634 | |
| 635 | |
| 636 | var doParallel = function (fn) { |
| 637 | return function () { |
| 638 | var args = Array.prototype.slice.call(arguments); |
| 639 | return fn.apply(null, [async.forEach].concat(args)); |
| 640 | }; |
| 641 | }; |
| 642 | var doSeries = function (fn) { |
| 643 | return function () { |
| 644 | var args = Array.prototype.slice.call(arguments); |
no outgoing calls
no test coverage detected
searching dependent graphs…