linwenling
2023-04-07 eb3e97b425f14ea55bed57b2485816950d6f0141
1
2
3
4
5
// 7.2.2 IsArray(argument)
var cof = require('./_cof');
module.exports = Array.isArray || function isArray(arg) {
  return cof(arg) == 'Array';
};