blob: 597e4f81a653f9265fb4775bd71ff2b17e657ac0 [file] [log] [blame]
var through = require('through2');
module.exports = function () {
return through(function (buf, enc, next) {
this.push(buf.toString('utf8').replace(/VAR/, 5));
next();
});
};