Use Array.isArray, when possible.
This commit is contained in:
parent
d9ebbae56b
commit
8344a10a83
|
@ -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]";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user