summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/helpers/forEach.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/helpers/forEach.js')
-rw-r--r--node_modules/es-abstract/helpers/forEach.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/es-abstract/helpers/forEach.js b/node_modules/es-abstract/helpers/forEach.js
deleted file mode 100644
index 35915a6..0000000
--- a/node_modules/es-abstract/helpers/forEach.js
+++ /dev/null
@@ -1,7 +0,0 @@
-'use strict';
-
-module.exports = function forEach(array, callback) {
- for (var i = 0; i < array.length; i += 1) {
- callback(array[i], i, array); // eslint-disable-line callback-return
- }
-};