mirror of
https://github.com/actions/stale.git
synced 2026-06-25 20:22:42 +08:00
0649bd8119
* Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules
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]';
|
|
};
|