Repository URL to install this package:
|
Version:
6.0.4 ▾
|
import { AnyObj } from '../../_typings';
import { MapObjIteratee } from './typings.loop.map';
/**
* The opposite of `mapValue` this method creates an object with the
* same values as `object` and keys generated by running each own enumerable
* string keyed property of `object` thru `iteratee`. The iteratee is invoked
* with three arguments: (value, key, object).
* @since 5.0.0-beta.6
* @memberOf loop
* @alias mapObjKeys
*
* @param {Object} object The object to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @return {Object} Returns the new mapped object.
*
* @fork 3.8.0
* @category Object
*
* @see mapValue
*
* @example
*
* var concatKey = (value, key) => key + value)
* mapKey({ 'a': 1, 'b': 2 }, concatKey)
* //=> { 'a1': 1, 'b2': 2 }
*
*/
declare function mapObjKey(object: AnyObj, iteratee: MapObjIteratee): {};
export default mapObjKey;