Rebuild dist/ and docs.

This commit is contained in:
John-David Dalton
2014-01-28 22:14:53 -08:00
parent ecb91613e8
commit e520486892
7 changed files with 107 additions and 82 deletions

View File

@@ -3252,7 +3252,8 @@
*/
function compose() {
var funcs = arguments,
length = funcs.length;
funcsLength = funcs.length,
length = funcsLength;
while (length--) {
if (!isFunction(funcs[length])) {
@@ -3260,13 +3261,13 @@
}
}
return function() {
var args = arguments,
length = funcs.length;
var length = funcsLength - 1,
result = funcs[length].apply(this, arguments);
while (length--) {
args = [funcs[length].apply(this, args)];
result = funcs[length].call(this, result);
}
return args[0];
return result;
};
}
@@ -3708,6 +3709,12 @@
* callback returns `undefined` cloning will be handled by the method instead.
* The callback is bound to `thisArg` and invoked with one argument; (value).
*
* Note: This method is loosely based on the structured clone algorithm. Functions
* and DOM nodes are **not** cloned. The enumerable properties of `arguments` objects and
* objects created by constructors other than `Object` are cloned to plain `Object` objects.
* See the [HTML5 specification](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm)
* for more details.
*
* @static
* @memberOf _
* @category Objects