* The **`pipeThrough()`** method of the ReadableStream interface provides a chainable way of piping the current stream through a transform stream or any other writable/readable pair. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeThrough)
(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions)
| 2263 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeThrough) |
| 2264 | */ |
| 2265 | pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>; |
| 2266 | /** |
| 2267 | * The **`pipeTo()`** method of the ReadableStream interface pipes the current `ReadableStream` to a given WritableStream and returns a Promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered. |
| 2268 | * |
no outgoing calls
no test coverage detected