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 that Symbol is undefined.
Proposal
I see a couple of options here:
- Make it more explicit in the docs that this is a requirement. As of this writing, the docs only mention polyfills for Promise and fetch
- Replace the loops with something like
Array.prototype.forEach.
It's up to you. I'd be happy to do a PR either way.
Issue
Because of
for...ofloops, 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 thatSymbolis 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.