Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/async.util.isarray/index.js
2591 views
1
'use strict';
2
3
module.exports = Array.isArray || function isArray(obj) {
4
return Object.prototype.toString.call(obj) === '[object Array]';
5
};
6
7