No Description

readable-stream-browser.js 427B

123456789
  1. /*
  2. * This file is used by module bundlers (browserify/webpack/etc) when
  3. * including a stream implementation. We use "readable-stream" to get a
  4. * consistent behavior between nodejs versions but bundlers often have a shim
  5. * for "stream". Using this shim greatly improve the compatibility and greatly
  6. * reduce the final size of the bundle (only one stream implementation, not
  7. * two).
  8. */
  9. module.exports = require("stream");