~webapps/unity-js-scopes/node.js

« back to all changes in this revision

Viewing changes to deps/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/readable.js

  • Committer: Marcus Tomlinson
  • Date: 2015-11-13 07:59:04 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20151113075904-h0swczmoq1rvstfc
Node v4 (stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
var Stream = (function (){
 
2
  try {
 
3
    return require('st' + 'ream'); // hack to fix a circular dependency issue when used with browserify
 
4
  } catch(_){}
 
5
}());
 
6
exports = module.exports = require('./lib/_stream_readable.js');
 
7
exports.Stream = Stream || exports;
 
8
exports.Readable = exports;
 
9
exports.Writable = require('./lib/_stream_writable.js');
 
10
exports.Duplex = require('./lib/_stream_duplex.js');
 
11
exports.Transform = require('./lib/_stream_transform.js');
 
12
exports.PassThrough = require('./lib/_stream_passthrough.js');