var through = require('through'); module.exports = function (file) { return through(function (buf) { this.queue(String(buf).replace(/AAA/g, '5')); }); };