GT2/GT2-iOS/node_modules/isarray/index.js
2018-02-12 17:26:06 +00:00

3 lines
120 B
JavaScript

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