Metzploreur/node_modules/isarray/index.js
clement callaert ea7979b55b commit
2023-11-04 00:51:37 +01:00

5 lines
132 B
JavaScript

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