You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
Noticed this issue when using Rx with Babel + Browserify and imporing Rx:
import Rx from 'rx'
.The problem is here:
/src/core/internal/util.js:
this.inherits
^^
this
might be undefined. It is set-up in /src/core/headers/outro.js as:And top-level
this
is remapped toundefined
in Babel.I fixed it locally by replacing
}.call(this));
with}.call(this || {}));
And now I'm wondering if it is necessary to add
inherits
to the globalthis
, polluting it?The text was updated successfully, but these errors were encountered: