-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
ignore reserved word in es3 ? #980
Labels
Comments
It seems you are right, thanks. However, I checked and it worked in IE7 recently. |
Strangely that ESLint does not see it, https://github.com/zloirock/core-js/blob/master/.eslintrc.js#L993 (till this week was used the default parser). |
The same 4f4d95e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in
/packages/core-js/modules/web.url.js
There is achar
.However in ES3 ,
char
is a reserved word .And in cdn
https://unpkg.com/[email protected]/index.js
orhttps://unpkg.com/[email protected]/minified.js
,char
is not be transformed to_char
or other indetifer , which means the cdn polyfill might not work in ie6/ie7.The text was updated successfully, but these errors were encountered: