blob: b61f675e6edc39777e59bed1ff0512aebb81f0c5 [file] [log] [blame]
var through = require('through2');
module.exports = function (file) {
return through(function (buf, enc, next) {
this.push(String(buf).replace(/XXX/g, '123'));
next();
});
};