1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-15 01:55:47 +00:00
2019-01-06 13:14:45 -06:00

4 lines
120 B
JavaScript

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