UNPKG

228 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, '6')
7 .replace(/BBB/g, '50')
8 );
9 next();
10 })
11}