FLUJOS/BACK_BACK/node_modules/is-arrayish/index.js
2025-11-07 00:06:12 +01:00

10 lines
204 B
JavaScript
Executable file

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