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