* Pipes the response through a transform stream. This converts the response * to a single readable stream (chaining if needed) and pipes it through the * provided transform. * * @param transform The transform stream to pipe through
(transform: TransformStream<Uint8Array, Uint8Array>)
| 264 | * @param transform The transform stream to pipe through |
| 265 | */ |
| 266 | public pipeThrough(transform: TransformStream<Uint8Array, Uint8Array>): void { |
| 267 | this.response = this.readable.pipeThrough(transform) |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * Unshifts a new stream to the response. This will convert the response to an |
no outgoing calls
no test coverage detected