Files
main-website/poker-paf/old/node_modules/isarray/index.js
T
2026-03-18 15:37:13 +01:00

6 lines
132 B
JavaScript

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