po-stream
v0.0.1
Published
Streaming .po file parser
Readme
po-stream 
Streaming .po file parser.
$ npm i --save po-streamUsage
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]>.
