Package Exports
- stream-generators
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stream-generators) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
stream-generators
Pipe ES6 Generators through Node.js Streams.
Usage
var streamify = require('stream-generators')
, os = require('os')
, gen = function*() {
yield '1';
yield '2';
yield '3';
yield os.EOL;
}
;
streamify(gen).pipe(process.stdout);
123\n
API
streamify(function*)
The result of require is a 'function()' that when invoked, will return a Readable Stream.
var generator = function*() {
yield 1;
yield 2;
};
var streamify = require('stream-generators');
var readable = streamify(generator);
This Stream will [push][14] each element from the generator into the [piped][15] array.
Install
npm install stream-generators