1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-15 19:13:49 +00:00
Files
musix-oss/node_modules/core-js/internals/is-array.js
MatteZ02 50b9bed483 Updated
2019-10-10 16:43:04 +03: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';
};