-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Crashes with some polyfills: @@toStringTag is not writable. #320
Comments
You refer to |
Oh sorry you're right! I updated the issue, I'm quite confused with these tags. Do you have any suggestion on how to tackle this issue? Is there something to polyfill, or a polyfill to fix? |
Without digging the problem, I can say only that |
Yes that should be safe! Considering that is this line ok:
|
It should be |
Fixed in es6-iterator, new version published at v2.0.3 |
This has been fixed by #402. See also: |
Hello,
I receive this error in console on Android Kitkat webviews:
Troubles arise from this line:
Gp[toStringTagSymbol] = "Generator";
because
toStringTagSymbol
is not writable.Some polyfills made it writable polyfillpolyfill/polyfill-service#1295 to make sure it works with
regenerator
.So I wrote about the issue here: medikoo/es6-symbol#24, but apparently the spec wants
@@toStringTag
to not be writable.EDIT: I thought it was related to this polyfill I use
Is it possible to not overwrite
@@toStringTag
?The text was updated successfully, but these errors were encountered: