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