blob: db9d97d1e43d853c6309e39db5bb143db46c127f [file] [log] [blame]
var through = require('through2');
module.exports = function (file) {
return through(function (buf, enc, next) {
this.push(String(buf).replace(/WWW/g, '"world wide wow"'));
next();
});
};