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