Array.isArray compat

This commit is contained in:
cloudhead 2010-04-01 22:37:29 -04:00
parent 9a34a05555
commit d87eca7d36

View File

@ -3,3 +3,12 @@ if (typeof(String.prototype.trim) !== "function") {
return this.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); return this.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}; };
} }
if (typeof(Array.isArray) !== "function") {
Array.isArray = function (a) {
if (a instanceof Array) {
return true;
} else {
return false;
}
}
}