-
Notifications
You must be signed in to change notification settings - Fork 407
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
Set does not work in <IE11 #67
Comments
Hi, |
Thanks for filling this issue. We should update the README with a reference to Babel's polyfills, or specifically, importing a shim for |
@addyosmani 👋 After doing another pass I think it may need to mention @tharun208 IE11 is fine with a bare var set = new Set([1, 2, 3]); // IE11 will be upset about this |
@addyosmani Looks good to me! 🙌 |
Awesome. Closing this now that it's documented. Cheers! :) |
Hello! 👋
Not flagging this to suggest it should work in anything below IE11, but the README currently says
quicklink
supports IE9+ as long as you have an Intersection Observer polyfill. HoweverSet
is not available until IE11. I think a user would need to have a Set polyfill in place to ensure it works that far back?Apologies if I'm missing something! But wanted to flag just in case.
The text was updated successfully, but these errors were encountered: