Pipes one stream into another and emits errors of the first stream with the second.
In case of an error in the first stream the second one will be destroyed with the given error.
This will also make the stream Guarded.
Type Parameters
T extends Writable<T>
Parameters
readable: ReadableStream
Initial readable stream.
destination: T
The destination for writing data.
OptionalmapError: ((error) => Error)
Optional function that takes the error and converts it to a new error.
Pipes one stream into another and emits errors of the first stream with the second. In case of an error in the first stream the second one will be destroyed with the given error. This will also make the stream Guarded.