Skip to content

Commit

Permalink
correct fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinmetcalf committed Jun 15, 2015
1 parent fd31267 commit 1803914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readable.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Stream = (function (){
} catch(_){}
}());
exports = module.exports = require('./lib/_stream_readable.js');
exports.Stream = Stream || module;
exports.Stream = Stream || exports;
exports.Readable = exports;
exports.Writable = require('./lib/_stream_writable.js');
exports.Duplex = require('./lib/_stream_duplex.js');
Expand Down

0 comments on commit 1803914

Please sign in to comment.