blob: 8f5d614731eb73c8f3530cba31527e591f68d2aa [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();
});
};