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