instead of only including stream if somebody else included it it apparently just doesn't include it in browserify vs node. This tells us a couple things
- nobody is doing readable-stream instance of require('stream') in the browser
- we could theoretically just replace this with a "browser":{"stream":false}
- webpack is doing what I thought browserify did, but they are doing it wrong
instead of only including stream if somebody else included it it apparently just doesn't include it in browserify vs node. This tells us a couple things