blob: 5b971868b6668b0397bf90d446476c8468901c52 [file] [log] [blame]
Yang Guo4fd355c2019-09-19 10:59:03 +02001'use strict';
2
3module.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};