mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01: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);
|
||
|
};
|