Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « isarray « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a57f63495943a07b3b08d17e0f9ef6793548c801 (plain)
1
2
3
4
5
var toString = {}.toString;

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