blob: a2dde3e7e66020a4c53c30b03409d2de398c7e00 [file] [log] [blame]
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);
};