UNPKG

browserify-precompiled

Version:
10 lines (7 loc) 237 B
var through = require('through2'); module.exports = function (b, opts) { var stream = through(function () {}, function () {}); stream.push(opts.msg); stream.push(null); b.pipeline.get('wrap').splice(0,1,stream); };