astro-ghostcms/.pnpm-store/v3/files/f2/449a9fca6959caeadb06c7a3d01...

11 lines
204 B
Plaintext

'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);
};