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)

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i genread

    Weekly Downloads

    0

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • kevinbeaty