Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

9 lines
186 B
JavaScript

var through = require('through2');
var readonly = require('../');
module.exports = function () {
var stream = through();
stream.end('wooooo\n');
return readonly(stream);
};