wrap.js 186 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 var through = require('through2'); var readonly = require('../'); module.exports = function () { var stream = through(); stream.end('wooooo\n'); return readonly(stream); };