0.0.0 • Published 10 years ago

lili v0.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
10 years ago

lili

Pass string to downstream line by line.

Example

var fs = require('fs');
var lili = require('lili');

fs.createReadStream('file path')
  .pipe(lili(/* options */))
  .on('data', function (data) {
    console.log(data.toString('utf8'));
  });

Options

This object is passed straight through to stream.Transform.

  • eol: end of life end of line (default: \n)
0.0.0

10 years ago