Update vendors, minified builds, and rebuild docs.

Former-commit-id: 9be99ca3c78a1a35fd13138398c48ab4a4b35f11
This commit is contained in:
John-David Dalton
2013-01-12 20:02:16 -08:00
parent 2d202e90b7
commit e4cb7112cf
12 changed files with 222 additions and 170 deletions

View File

@@ -642,14 +642,14 @@
}
var props = keys(func);
return function(object) {
var length = props.length;
var length = props.length,
result = false;
while (length--) {
var result = object[props[length]] === func[props[length]];
if (!result) {
if (!(result = object[props[length]] === func[props[length]])) {
break;
}
}
return !!result;
return result;
};
}
if (typeof thisArg != 'undefined') {