index.js 120 B

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