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

@@ -2547,9 +2547,7 @@
* _.invert({ 'first': 'fred', 'second': 'barney' });
* // => { 'fred': 'first', 'barney': 'second' }
*
* _.invert({ 'first': 'fred', 'second': 'barney', 'third': 'fred' }, true);
* // => { 'fred': ['first', 'third'], 'barney': ['second'] }
*/
n */
function invert(object, oneToMany) {
var index = -1,
props = keys(object),