Rebuild lodash and docs.

This commit is contained in:
John-David Dalton
2016-04-04 11:43:59 -07:00
parent 21d056c470
commit 238d45a2cb
10 changed files with 337 additions and 346 deletions

16
dist/lodash.js vendored
View File

@@ -1,6 +1,6 @@
/**
* @license
* lodash 4.8.1 (Custom Build) <https://lodash.com/>
* lodash 4.8.2 (Custom Build) <https://lodash.com/>
* Build: `lodash -o ./dist/lodash.js`
* Copyright jQuery Foundation and other contributors <https://jquery.org/>
* Released under MIT license <https://lodash.com/license>
@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.8.1';
var VERSION = '4.8.2';
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -4609,7 +4609,7 @@
*/
function createOver(arrayFunc) {
return rest(function(iteratees) {
iteratees = arrayMap(iteratees, getIteratee());
iteratees = arrayMap(baseFlatten(iteratees, 1), getIteratee());
return rest(function(args) {
var thisArg = this;
return arrayFunc(iteratees, function(iteratee) {
@@ -9593,7 +9593,7 @@
* @memberOf _
* @category Function
* @param {Function} func The function to wrap.
* @param {...Function} [transforms] The functions to transform
* @param {...(Function|Function[])} [transforms] The functions to transform.
* arguments, specified individually or in arrays.
* @returns {Function} Returns the new function.
* @example
@@ -9617,7 +9617,7 @@
* // => [100, 10]
*/
var overArgs = rest(function(func, transforms) {
transforms = arrayMap(transforms, getIteratee());
transforms = arrayMap(baseFlatten(transforms, 1), getIteratee());
var funcsLength = transforms.length;
return rest(function(args) {
@@ -14692,7 +14692,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...Function} iteratees The iteratees to invoke.
* @param {...(Function|Function[])} iteratees The iteratees to invoke.
* @returns {Function} Returns the new function.
* @example
*
@@ -14711,7 +14711,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...Function} predicates The predicates to check.
* @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
@@ -14736,7 +14736,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...Function} predicates The predicates to check.
* @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*