All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._is-array.js Maven / Gradle / Ivy

The newest version!
// 7.2.2 IsArray(argument)
var cof = require('./_cof');
module.exports = Array.isArray || function isArray(arg) {
  return cof(arg) == 'Array';
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy