diff options
Diffstat (limited to 'node_modules/is-arrayish/index.js')
-rw-r--r-- | node_modules/is-arrayish/index.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/is-arrayish/index.js b/node_modules/is-arrayish/index.js deleted file mode 100644 index 5b97186..0000000 --- a/node_modules/is-arrayish/index.js +++ /dev/null @@ -1,10 +0,0 @@ -'use strict'; - -module.exports = function isArrayish(obj) { - if (!obj) { - return false; - } - - return obj instanceof Array || Array.isArray(obj) || - (obj.length >= 0 && obj.splice instanceof Function); -}; |