mapKeys
最后更新于:2022-04-02 00:05:23
## mapKeys
+ [link](./mapKeys "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L11408 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.mapkeys "See the npm package.")
```
_.mapKeys(object, [iteratee=_.identity])
```
反向版 `_.mapValues`。 这个方法创建一个对象,对象的值与源对象相同,但 key 是通过 `iteratee` 产生的。
### 参数
1. object (Object)
要遍历的对象
2. [iteratee=_.identity] (Function|Object|string)
这个函数会处理每一个元素
### 返回值 (Object)
返回映射后的新对象
### 示例
```
_.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {
return key + value;
});
// => { 'a1': 1, 'b2': 2 }
```
';