use-stream.js 216 B

1234
  1. // browserify plugin to swap out the `stream` builtin node shim with the stream-browserify version in this repo.
  2. module.exports = function (b) {
  3. b._mdeps.options.modules.stream = require.resolve('../index.js');
  4. };