summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commons/polyfills/nodelist.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/commons/polyfills/nodelist.js')
-rw-r--r--app/assets/javascripts/commons/polyfills/nodelist.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/assets/javascripts/commons/polyfills/nodelist.js b/app/assets/javascripts/commons/polyfills/nodelist.js
deleted file mode 100644
index 3a9111e64f8..00000000000
--- a/app/assets/javascripts/commons/polyfills/nodelist.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * Polyfill
- * @what NodeList.forEach
- * @why To align browser support
- * @browsers Internet Explorer 11
- * @see https://caniuse.com/#feat=mdn-api_nodelist_foreach
- */
-if (window.NodeList && !NodeList.prototype.forEach) {
- NodeList.prototype.forEach = function forEach(callback, thisArg = window) {
- for (let i = 0; i < this.length; i += 1) {
- callback.call(thisArg, this[i], i, this);
- }
- };
-}