You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[object Object] is not iterable!
at module.exports (https://xxx/assets/bundle.js:2904:35)
at Anonymous function (https://xxx/assets/bundle.js:2812:8)
at perform (https://xxx/assets/bundle.js:2602:6)
at all (https://xxx/assets/bundle.js:2808:6)
at eval code (eval code:1:1)
at Global code (Unknown script code:5:1)
We use Webpack and I've looked at this issue #77 but I don't think it's the same thing. We get the same error even when not using Webpacks devtool option.
I get the error when the polyfill for Promise.all calls forOf from _for-of.js with an array as the first argument and var iterFn = ITERATOR ? function(){ return iterable; } : getIterFn(iterable) returns undefined. I stepped through getIterFn (core.get-iterator-method.js) and classof(it) is Array but Iterators is an empty object which produces the error.
We import the polyfills one by one for the ones we need like this:
Running this code in the console in IE11:
Gives me the following error:
We use Webpack and I've looked at this issue #77 but I don't think it's the same thing. We get the same error even when not using Webpacks
devtool
option.I get the error when the polyfill for
Promise.all
callsforOf
from_for-of.js
with an array as the first argument andvar iterFn = ITERATOR ? function(){ return iterable; } : getIterFn(iterable)
returnsundefined
. I stepped throughgetIterFn
(core.get-iterator-method.js
) andclassof(it)
isArray
butIterators
is an empty object which produces the error.We import the polyfills one by one for the ones we need like this:
Could it be that we're missing some polyfill that's required for it to work?
This seems to be a minimal reproduce test:
The same error is thrown in IE11 but no errors in latest Firefox or Chrome.
The text was updated successfully, but these errors were encountered: