Yang Guo | 4fd355c | 2019-09-19 10:59:03 +0200 | [diff] [blame^] | 1 | 'use strict'; |
2 | |||||
3 | module.exports = function isArrayish(obj) { | ||||
4 | if (!obj) { | ||||
5 | return false; | ||||
6 | } | ||||
7 | |||||
8 | return obj instanceof Array || Array.isArray(obj) || | ||||
9 | (obj.length >= 0 && obj.splice instanceof Function); | ||||
10 | }; |