map<Tin = unknown,Tout = Tin,>(readable: ReadableStream<Tin>,...transformers: ITransformer<any, any>[],): ReadableStream<Tout>
Creates a new stream by applying one or more transform functions to each chunk of the input stream. When many functions are provided, they are applied in order.
Tout = Tin
readable: ReadableStream<Tin>
The input stream
A readable stream whose chunks are the result of applying the transform functions (sequentially) to the input chunks