Append items to a stream
The items to append to the stream
A TransformStream that appends the items to the end of the stream
const stream = readable.pipeThrough(append(4, 5, 6));// If readable emits [1, 2, 3], the result will be [1, 2, 3, 4, 5, 6] Copy
const stream = readable.pipeThrough(append(4, 5, 6));// If readable emits [1, 2, 3], the result will be [1, 2, 3, 4, 5, 6]
Append items to a stream