tr_a.js 197 B

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