thedesk/app/node_modules/isarray/index.js
2019-09-12 23:38:13 +09:00

4 lines
120 B
JavaScript

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