aboutsummaryrefslogtreecommitdiff
path: root/node_modules/arr-exclude/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/arr-exclude/index.js')
-rw-r--r--node_modules/arr-exclude/index.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/arr-exclude/index.js b/node_modules/arr-exclude/index.js
deleted file mode 100644
index cdcf6018c..000000000
--- a/node_modules/arr-exclude/index.js
+++ /dev/null
@@ -1,10 +0,0 @@
-'use strict';
-module.exports = function (input, exclude) {
- if (!Array.isArray(input)) {
- return [];
- }
-
- return input.filter(function (x) {
- return exclude.indexOf(x) === -1;
- });
-};