blob: 55860810af2fb4893a9f1ea33f4260a3022df60a [file] [log] [blame]
var through = require('through2');
var readonly = require('../');
module.exports = function () {
var stream = through();
stream.end('wooooo\n');
return readonly(stream);
};