the type of record passed down by previous streams
the type returned by the mapping function passed to the following streams
The function used to map stream items
The stream's options
The function used to map stream items
Event emitter The defined events on documents including:
A utility method for creating Readable Streams out of iterators.
Generated using TypeDoc
A transform stream that maps previous stream elements to another type
Readable .from([1, 2, 3, 4]) .pipe(new Map((n: number) => n + 1)) .on("close", (chunks: number[]) => { console.log(chunks); // [2, 3, 4, 5] });