1var through = require('through2'); 2 3module.exports = function (file) { 4 return through(function (buf, enc, next) { 5 this.push(String(buf).replace(/BBB/g, '50')); 6 next(); 7 }); 8}; 9 10