summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash/internal/isArrayLike.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lodash/internal/isArrayLike.js')
-rw-r--r--deps/npm/node_modules/lodash/internal/isArrayLike.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/deps/npm/node_modules/lodash/internal/isArrayLike.js b/deps/npm/node_modules/lodash/internal/isArrayLike.js
deleted file mode 100644
index 72443cde10..0000000000
--- a/deps/npm/node_modules/lodash/internal/isArrayLike.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var getLength = require('./getLength'),
- isLength = require('./isLength');
-
-/**
- * Checks if `value` is array-like.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
- */
-function isArrayLike(value) {
- return value != null && isLength(getLength(value));
-}
-
-module.exports = isArrayLike;