(controller)
| 188 | return new ReadableStream( |
| 189 | { |
| 190 | async pull(controller) { |
| 191 | await setTimeoutAsync(timeout); |
| 192 | n-- ? controller.enqueue(chunk) : controller.close(); |
| 193 | }, |
| 194 | }, |
| 195 | { |
| 196 | highWaterMark: 1, |
nothing calls this directly
no test coverage detected