Files
less.js/build/compat.js
2010-04-01 22:37:29 -04:00

15 lines
370 B
JavaScript

if (typeof(String.prototype.trim) !== "function") {
String.prototype.trim = function (str) {
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;
}
}
}