Rebuild docs and dist.

This commit is contained in:
John-David Dalton
2014-02-22 18:06:40 -08:00
parent c4e31e7a58
commit 8e1f7c8d6f
8 changed files with 352 additions and 302 deletions

View File

@@ -3879,7 +3879,7 @@
* _.indexBy(keys, function(key) { return String.fromCharCode(key.code); });
* // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
*
* _.indexBy(characters, function(key) { this.fromCharCode(key.code); }, String);
* _.indexBy(keys, function(key) { return this.fromCharCode(key.code); }, String);
* // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
*/
var indexBy = createAggregator(function(result, value, key) {