aboutsummaryrefslogtreecommitdiff
path: root/node_modules/arrify/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/arrify/index.js')
-rw-r--r--node_modules/arrify/index.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/arrify/index.js b/node_modules/arrify/index.js
deleted file mode 100644
index 2a2fdeeb1..000000000
--- a/node_modules/arrify/index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-'use strict';
-module.exports = function (val) {
- if (val === null || val === undefined) {
- return [];
- }
-
- return Array.isArray(val) ? val : [val];
-};