aboutsummaryrefslogtreecommitdiff
path: root/node_modules/isarray/index.js
blob: a57f63495943a07b3b08d17e0f9ef6793548c801 (plain)
1
2
3
4
5
var toString = {}.toString;

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