blob: 5b971868b6668b0397bf90d446476c8468901c52 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'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};