po-stream
v0.0.1
Published
Streaming .po file parser
Downloads
3
Readme
po-stream
Streaming .po
file parser.
$ npm i --save po-stream
Usage
var fs = require('fs');
var poStream = require('po-stream');
fs.createReadStream('file path')
.pipe(poStream())
.on('data', function (entry) {
console.log(entry.toString());
});
License
(The MIT License)
Copyright (c) 2014 Po-Ying Chen <[email protected]>.