mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Bump to v3.3.0.
This commit is contained in:
@@ -27,8 +27,10 @@ define(['../internal/baseCallback', '../internal/baseForOwn'], function(baseCall
|
||||
* @returns {Object} Returns the new mapped object.
|
||||
* @example
|
||||
*
|
||||
* _.mapValues({ 'a': 1, 'b': 2, 'c': 3} , function(n) { return n * 3; });
|
||||
* // => { 'a': 3, 'b': 6, 'c': 9 }
|
||||
* _.mapValues({ 'a': 1, 'b': 2 }, function(n) {
|
||||
* return n * 3;
|
||||
* });
|
||||
* // => { 'a': 3, 'b': 6 }
|
||||
*
|
||||
* var users = {
|
||||
* 'fred': { 'user': 'fred', 'age': 40 },
|
||||
|
||||
Reference in New Issue
Block a user