@ibsheet/loader
Version:
Dynamically load support module for IBSheet
14 lines • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var setPolyfill = function () {
if ('NodeList' in window && !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);
}
};
}
};
exports.default = setPolyfill;
//# sourceMappingURL=polyfill.js.map