Mozilla states that \"for of loops will loop over NodeList objects correctly\". (source: https://developer.mozilla.org/en-US/docs/Web/API/NodeList) However, this doesn\'t wo
I had this problem. Turns out mine was caused by calling Promise.all() with parameters instead of an array. For example:
Before: Promise.all(p1, p2)
Promise.all(p1, p2)
After: Promise.all([p1, p2])
Promise.all([p1, p2])
Hope this helps someone.