// test browserify transform// changes all instances of 'baz' to 'qux'var through = require('through2');
module.exports = function (file) {
returnthrough(function (buf, enc, next) {
this.push(buf.toString('utf8').replace(/baz/g, 'qux'));
next();
});
};