cs142/project2/node_modules/isarray/index.js
2020-08-01 19:26:11 -03:00

4 lines
120 B
JavaScript

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