wrap.js 186 B

12345678
  1. var through = require('through2');
  2. var readonly = require('../');
  3. module.exports = function () {
  4. var stream = through();
  5. stream.end('wooooo\n');
  6. return readonly(stream);
  7. };