-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
core.min.js error in Safari 8.0.7 #92
Comments
It's old safari bug - wrong strict mode rule. Looks like problem in minification, I thought it was fixed in \cc @mishoo |
Great, I'll give it a go when it's released! Ah, Safari; The new IE. |
I disable compression function names, it should prevent this problem. Available |
I can confirm this is fixed. Thank you! |
Thanks for report :) |
It looks like the minifier used is violating the 'use strict'; directive. File used: https://raw.githubusercontent.com/zloirock/core-js/master/client/core.min.js
Results in :
SyntaxError: Cannot declare a parameter named 'k' as it shadows the name of a strict mode function. core.min.js:8
Unminified version works fine.
Cheers! 🍻
The text was updated successfully, but these errors were encountered: