(...tasks: ThreadGenerator[])
| 19 | * @param tasks - A list of tasks to run. |
| 20 | */ |
| 21 | export function* all(...tasks: ThreadGenerator[]): ThreadGenerator { |
| 22 | for (const task of tasks) { |
| 23 | yield task; |
| 24 | } |
| 25 | yield* join(...tasks); |
| 26 | } |
no test coverage detected