genread

0.0.2 • Public • Published

Turn any generator into a readable stream.

Build Status

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)

Readme

Keywords

none

Package Sidebar

Install

npm i genread

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • kevinbeaty