-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chrome logs 'Uncaught (in promise) TypeError' on load #403
Comments
Generally speaking, warnings like this aren't something that need "fixing" - Firefox logs a warning about mutating prototypes, for example, because one of es6-shim's runtime checks needs to try to mutate a prototype to check compliance. However, in this case, something like the fix you've suggested will indeed work - thanks for the suggestion! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Chrome dev (49.0.2623.23) logs an error to console when loading es6-shim.
The error seems to come from the
promiseResolveBroken
test:One possible fix is to add an empty reject handler to the
p2
promise:The text was updated successfully, but these errors were encountered: