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
On IE (tested on 11 bug same behavior reported on 8 & 9) if the "Disable Script Debugging" setting is enabled IE only provides console.error unless the console is open. This behavior is explains #29.
Attached is the execution of alert(Object.keys(console).join(', ')).
(reactStack and reactStackEnd are side effects of React but is not relevant)
This is the same execution but when the console is open.
Tested on IE 11.15.16299.0 via BrowserStack
The text was updated successfully, but these errors were encountered:
I have held back on a PR since I am not sure if @caiogondim wants polyfills essentially bundled in the library.
CoreJS, which are the standard polyfills Babel uses, had console polyfills but they were removed for some reason. So users using this package with CoreJS will encounter this error. I've opened an issue for this zloirock/core-js#633.
Solutions
Bundle console polyfill, it's small but some clients may not want it
Split the console polyfill and warn developers that they need to include it if they are not using CoreJS but want to support IE (only if CoreJS will re-introduce console polyfill)
On IE (tested on 11 bug same behavior reported on 8 & 9) if the "Disable Script Debugging" setting is enabled IE only provides
console.error
unless the console is open. This behavior is explains #29.Attached is the execution of
alert(Object.keys(console).join(', '))
.(
reactStack
andreactStackEnd
are side effects of React but is not relevant)This is the same execution but when the console is open.
Tested on IE 11.15.16299.0 via BrowserStack
The text was updated successfully, but these errors were encountered: