| Current Path : /proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/is-arrayish/ |
| Current File : //proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/is-arrayish/index.js |
'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);
};