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 <poying.me@gmail.com>.