genread
v0.0.2
Published
Turn any generator into a Readable stream
Downloads
3
Readme
Turn any generator into a readable stream.
Installation
$ npm install genread
You must use node 0.11.9 or higher for generator support and run with the --harmony
flag.
Example
var genread = require('genread');
function* twolines(){
yield 'line 1\n'
yield 'line 2\n'
}
function* fivelines(){
yield '1';
yield '23';
yield *twolines();
yield '456';
}
genread(fivelines()).pipe(process.stdout)