* 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. * * [MDN Reference](https://developer.mozilla.
(
destination: WritableStream<R>,
options?: StreamPipeOptions
)
| 2732 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeTo) |
| 2733 | */ |
| 2734 | pipeTo( |
| 2735 | destination: WritableStream<R>, |
| 2736 | options?: StreamPipeOptions |
| 2737 | ): Promise<void> |
nothing calls this directly
no outgoing calls
no test coverage detected