0.0.4 • Published 12 years ago

delimitfile v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
12 years ago

delimitfile

Simple stream wrapper to handle delimited text based files.

\n is default delimiter, also as with standard split a regex object can be passed as delimiter (take care with escaping though).

example

var lineStream = require('delimitfile')('story.txt','\n');

lineStream.on('data',function (line) {
  console.log(line);
});

install

cd npm install --save delimitfile

license

mit

author

Twitter - @nonuby

0.0.4

12 years ago

0.0.3

12 years ago