Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/isarray/index.js
2025-09-18 19:01:22 +07:00

6 lines
132 B
JavaScript

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