blob: a4dd4445174284b6a8daca95cf3c67b3b3671d9c [file] [log] [blame]
const through2 = require('through2');
module.exports = function() {
return through2.obj(function(row, enc, next) {
return next();
},
function(next) {
next(null, "module.exports = 'evil';");
}
)
};