blob: b3c484f224d6b44761f610458b8187a63ec83c58 [file] [log] [blame]
var through = require('through2');
module.exports = function () {
return through(function (buf, enc, next) {
this.push(buf.toString('utf8').replace(/X/g, 'Z'));
next();
});
};