-
-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
Description
const sb = require('stream-browserify')
const rb = new sb.Readable()
console.log(rb instanceof sb.Stream) // false
const s = require('stream')
const r = new s.Readable()
console.log(r instanceof s.Stream) // true
it's coming from readable-stream
inheriting from the stream
instead of stream-browserify
vtrikoupis, andriuskv, mattywong, FredrikMeyer and kkirsche