Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80529 views
1
module.exports = Array.isArray || function (arr) {
2
return Object.prototype.toString.call(arr) == '[object Array]';
3
};
4
5