Ai-Tunes's picture
Upload 656 files
1a3d6ba
raw
history blame
132 Bytes
var toString = {}.toString;
module.exports = Array.isArray || function (arr) {
return toString.call(arr) == '[object Array]';
};