mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
15 lines
410 B
JavaScript
15 lines
410 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var GetIntrinsic = require('get-intrinsic');
|
||
|
|
||
|
var $Array = GetIntrinsic('%Array%');
|
||
|
|
||
|
// eslint-disable-next-line global-require
|
||
|
var toStr = !$Array.isArray && require('call-bind/callBound')('Object.prototype.toString');
|
||
|
|
||
|
// https://ecma-international.org/ecma-262/6.0/#sec-isarray
|
||
|
|
||
|
module.exports = $Array.isArray || function IsArray(argument) {
|
||
|
return toStr(argument) === '[object Array]';
|
||
|
};
|