github-pages-deploy-action/node_modules/core-js-pure/internals/is-array.js
2020-03-06 22:45:40 -05:00

8 lines
226 B
JavaScript

var classof = require('../internals/classof-raw');
// `IsArray` abstract operation
// https://tc39.github.io/ecma262/#sec-isarray
module.exports = Array.isArray || function isArray(arg) {
return classof(arg) == 'Array';
};