UNPKG

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