Closed reesscot closed 7 years ago
Polyfill is missing the if check listed on MDN:
if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = function (callback, argument) { argument = argument || window; for (var i = 0; i < this.length; i++) { callback.call(argument, this[i], i, this); } }; }
Released in version 1.1.0 (published to NPM)
Polyfill is missing the if check listed on MDN: