.mapValues(object, [iteratee=.identity])
Creates an object with the same keys as object
and values generated by running each own enumerable string keyed property of object
thru iteratee
. The iteratee is invoked with three arguments:(value, key, object).
Since
2.4.0
Arguments
object
(Object): The object to iterate over.[iteratee=.identity]
(Function)_: The function invoked per iteration.
Returns
(Object): Returns the new mapped object.
Example
var users = {'fred': { 'user': 'fred', 'age': 40 },'pebbles': { 'user': 'pebbles', 'age': 1 }};_.mapValues(users, function(o) { return o.age; });// => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)// The `_.property` iteratee shorthand._.mapValues(users, 'age');// => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .