• Pipes one stream into another and emits errors of the first stream with the second. If the first stream errors, the second one will be destroyed with the given error. This will also make the stream Guarded.

    Type Parameters

    • T extends Writable

    Parameters

    • readable: ReadableStream

      Initial readable stream.

    • destination: T

      The destination for writing data.

    • OptionalmapError: ((error: Error) => Error)

      Optional function that takes the error and converts it to a new error.

        • (error): Error
        • Parameters

          • error: Error

          Returns Error

    Returns Guarded<T>

    The destination stream.