Files
UoL/CM2010 Software Design and Development/Topic 2/8.3.1/node_modules/isarray/index.js
2021-06-16 19:39:43 -05:00

6 lines
132 B
JavaScript

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