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