Use Array.isArray, when possible.

This commit is contained in:
Davide P. Cervone 2016-08-29 10:15:52 -04:00
parent d9ebbae56b
commit 8344a10a83

View File

@ -155,7 +155,7 @@ MathJax.cdnFileVersions = {}; // can be used to specify revisions for individua
})
});
BASE.Object.isArray = function (obj) {
BASE.Object.isArray = Array.isArray || function (obj) {
return Object.prototype.toString.call(obj) === "[object Array]";
};