(source)
| 114 | |
| 115 | // No-op consumer: drain all batches without collecting |
| 116 | async function drain(source) { |
| 117 | // eslint-disable-next-line no-unused-vars |
| 118 | for await (const _ of source) { /* drain */ } |
| 119 | } |
| 120 | |
| 121 | async function run() { |
| 122 | const { writer, broadcast: bc } = broadcast(); |
no outgoing calls
no test coverage detected
searching dependent graphs…