UNPKG

362 BJavaScriptView Raw
1const Stream = require('stream');
2
3module.exports = Stream.Readable;
4module.exports.Stream = Stream;
5module.exports.Writable = Stream.Writable;
6module.exports.Duplex = Stream.Duplex;
7module.exports.Transform = Stream.Transform;
8module.exports.PassThrough = Stream.PassThrough;
9module.exports.finished = Stream.finished;
10module.exports.pipeline = Stream.pipeline;
\No newline at end of file