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: 5f5ad45d46dda97cc2ae37932e0dacf25d06352d (plain)
1
2
3
module.exports = Array.isArray || function (arr) {
  return Object.prototype.toString.call(arr) == '[object Array]';
};