({ onError, onDone })
| 9 | |
| 10 | class AsyncSeriesHookCodeFactory extends HookCodeFactory { |
| 11 | content({ onError, onDone }) { |
| 12 | return this.callTapsSeries({ |
| 13 | onError: (i, err, next, doneBreak) => onError(err) + doneBreak(true), |
| 14 | onDone |
| 15 | }); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | const factory = new AsyncSeriesHookCodeFactory(); |
nothing calls this directly
no test coverage detected