mirror of
https://hub.gitmirror.com/https://github.com/gradle/actions.git
synced 2025-10-28 00:20:02 +08:00
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
var toString = {}.toString;
|
|
|
|
module.exports = Array.isArray || function (arr) {
|
|
return toString.call(arr) == '[object Array]';
|
|
};
|