ReadableStream.pipeThrough()
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.
Piping a stream will generally lock it for the duration of the pipe, preventing other readers from locking it.
Syntax
pipeThrough(transformStream)
pipeThrough(transformStream, options)
Parameters
transformStream- : A
TransformStream(or an object with the structure{writable, readable}) consisting of a readable stream and a writable stream working together to transform some data from one form to another. Data written to thewritablestream can be read in some transformed state by thereadablestream. For example, aTextDecoder, has bytes written to it and strings read from it, while a video decoder has encoded bytes written to it and uncompressed video frames read from it.
- : A
optionsoptional: The options that should be used when piping to the
writablestream. Available options are:preventClose- : If this is set to
true, the sourceReadableStreamclosing will no longer cause the destinationWritableStreamto be closed. The method will return a fulfilled promise once this process completes, unless an error is encountered while closing the destination, in which case it will be rejected with that error.
- : If this is set to
preventAbort- : If this is set to
true, errors in the sourceReadableStreamwill no longer abort the destinationWritableStream. The method will return a promise rejected with the source's error, or with any error that occurs during aborting the destination.
- : If this is set to
preventCancel- : If this is set to
true, errors in the destinationWritableStreamwill no longer cancel the sourceReadableStream. In this case the method will return a promise rejected with the source's error, or with any error that occurs during canceling the source. In addition, if the destination writable stream starts out closed or closing, the source readable stream will no longer be canceled. In this case the method will return a promise rejected with an error indicating piping to a closed stream failed, or with any error that occurs during canceling the source.
- : If this is set to
Return value
The readable side of the transformStream.
Exceptions
TypeError- : Thrown if the
writableand/orreadableproperty oftransformStreamare undefined.
- : Thrown if the