weblogin/node_modules/isarray/index.js
Gál Lóránt Zsolt 67b995efa8 'feltoltes'
2023-01-27 11:58:43 +01:00

6 lines
132 B
JavaScript

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