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