github-pages-deploy-action/node_modules/core-js-pure/internals/is-array.js

8 lines
226 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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';
};