paragon_themekit-8.x-1.0-alpha13/starterkit/global/js/vendor/nodeListForEachPolyfill.js
starterkit/global/js/vendor/nodeListForEachPolyfill.js
/**
* A polyfill for using .forEach() on node lists in IE and Edge.
*
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill}
*/
if (window.NodeList && !NodeList.prototype.forEach) {
NodeList.prototype.forEach = function (callback, thisArg) {
thisArg = thisArg || window;
for (var i = 0; i < this.length; i++) {
callback.call(thisArg, this[i], i, this);
}
};
}