Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/is-arrayish/index.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

11 lines
204 B
JavaScript

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