NeahOpti/node_modules/isarray/index.js
2025-04-22 12:49:37 +02:00

4 lines
120 B
JavaScript

module.exports = Array.isArray || function (arr) {
return Object.prototype.toString.call(arr) == '[object Array]';
};