UNPKG

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