mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
11 lines
204 B
JavaScript
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);
|
||
|
};
|