aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/array/#/separate.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/array/#/separate.js')
-rw-r--r--node_modules/es5-ext/array/#/separate.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/es5-ext/array/#/separate.js b/node_modules/es5-ext/array/#/separate.js
deleted file mode 100644
index 35e1cc5ac..000000000
--- a/node_modules/es5-ext/array/#/separate.js
+++ /dev/null
@@ -1,12 +0,0 @@
-"use strict";
-
-var forEach = Array.prototype.forEach;
-
-module.exports = function (sep) {
- var result = [];
- forEach.call(this, function (val) {
- result.push(val, sep);
- });
- result.pop();
- return result;
-};