isururana's picture
Added node.js AI Mastering module
75ee606 verified
raw
history blame
132 Bytes
var toString = {}.toString;
module.exports = Array.isArray || function (arr) {
return toString.call(arr) == '[object Array]';
};