Files
Domen Kožar 49df04613e v7
2020-02-24 13:29:22 +01:00

6 lines
132 B
JavaScript

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