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