Newer
Older
ez-indexation / app / node_modules / isarray / index.js
@kieffer kieffer on 7 Mar 2017 132 bytes v0.0.0
var toString = {}.toString;

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