| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [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 | }; | ||||