(results, taskCb)
| 134 | } |
| 135 | |
| 136 | function newTask(results, taskCb) { |
| 137 | var newArgs = arrayMap(params, function (name) { |
| 138 | return results[name]; |
| 139 | }); |
| 140 | newArgs.push(taskCb); |
| 141 | wrapAsync(taskFn).apply(null, newArgs); |
| 142 | } |
| 143 | }); |
| 144 | |
| 145 | auto(newTasks, callback); |
nothing calls this directly
no test coverage detected
searching dependent graphs…