-
-
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
No IE11 support because of for...of loops #239
Comments
From a quick test, it looks like it isn't just After updating the library to remove
Then after adding |
OK. What is your preference on how to update the README? I might have some time to investigate the specific things that need polyfilling in IE11. Or we could just say "If you use IE11, you |
I think most people targeting IE11 will be using |
Issue
Because of
for...of
loops, this component does not support IE11. (And possibly other reasons—I mention the loops because they are what caused the errors in my case). You will get an error saying thatSymbol
is undefined.Proposal
I see a couple of options here:
Array.prototype.forEach
.It's up to you. I'd be happy to do a PR either way.
The text was updated successfully, but these errors were encountered: