mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
521 B
13 lines
521 B
10 years ago
|
var Stream = (function (){
|
||
|
try {
|
||
|
return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify
|
||
|
} catch(_){}
|
||
|
}());
|
||
10 years ago
|
exports = module.exports = require('./lib/_stream_readable.js');
|
||
10 years ago
|
exports.Stream = Stream || exports;
|
||
10 years ago
|
exports.Readable = exports;
|
||
|
exports.Writable = require('./lib/_stream_writable.js');
|
||
|
exports.Duplex = require('./lib/_stream_duplex.js');
|
||
|
exports.Transform = require('./lib/_stream_transform.js');
|
||
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|