built dist files after adding oneToMany support to _.invert

This commit is contained in:
Scott Shepherd
2013-12-05 11:24:46 -05:00
parent cc7575adab
commit 75fa116c88
7 changed files with 24 additions and 38 deletions

View File

@@ -853,7 +853,7 @@
/**
* Gets the appropriate "indexOf" function. If the `_.indexOf` method is
* customized this method returns the custom method, otherwise it returns
* customized, this method returns the custom method, otherwise it returns
* the `baseIndexOf` function.
*
* @private
@@ -3575,10 +3575,9 @@
}
/**
* Creates an array of grouped elements, the first of which contains the
* first elements of the given arrays, the second of which contains the second
* elements of the given arrays, and so on. If a zipped value is provided its
* corresponding unzipped value will be returned.
* Creates an array of grouped elements, the first of which contains the first
* elements of the given arrays, the second of which contains the second
* elements of the given arrays, and so on.
*
* @static
* @memberOf _
@@ -3590,9 +3589,6 @@
*
* _.zip(['fred', 'barney'], [30, 40], [true, false]);
* // => [['fred', 30, true], ['barney', 40, false]]
*
* _.unzip([['fred', 30, true], ['barney', 40, false]]);
* // => [['fred', 'barney'], [30, 40], [true, false]]
*/
function zip() {
var index = -1,
@@ -4904,7 +4900,7 @@
/*--------------------------------------------------------------------------*/
// add functions to `lodash.prototype`
mixin(assign({}, lodash));
mixin(lodash);
/**
* The semantic version number.