iterable-to-stream
v2.0.0
Published
Converts iterable objects into readable streams.
Downloads
97,319
Maintainers
Readme
iterable-to-stream
Convert iterable objects into node readable streams.
import iterableToStream from 'iterable-to-stream';
iterableToStream(['one', 'two', 'three']).pipe(process.stdout);
Note
With version 10, Node introduced stream.Readable.from which converts an iterator to a stream.
This library will use the Node version if it is available.
Notice of Deprecation
This library will be deprecated when Node 12 is deprecated.
Supported Node Versions
- 12.x, 14.x, 15.x
- Unsupported, but should still work: 8.x, 10.x