(error)
| 131 | queue.drain = _.once(callback); |
| 132 | |
| 133 | function onTaskCompletion (error) { |
| 134 | if (error) { |
| 135 | queue.kill(); |
| 136 | callback(error); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | _.each(components, function (component) { |
| 141 | queue.push(component, onTaskCompletion); |
nothing calls this directly
no outgoing calls
no test coverage detected