()
| 206 | const upstream = Readable.fromWeb(response.body as any) |
| 207 | const limited = new Readable({ |
| 208 | read() { |
| 209 | // Resume the upstream when the consumer is ready for more data |
| 210 | upstream.resume() |
| 211 | }, |
| 212 | }) |
| 213 | |
| 214 | upstream.on('data', (chunk: Buffer) => { |
no test coverage detected