Skip to main content
Module

x/lodash_es/mod.ts>mapKeys

lodash for deno use
Latest
function mapKeys
import { mapKeys } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

The opposite of _.mapValues; 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).

Examples

_.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { return key + value; }); // => { 'a1': 1, 'b2': 2 }

Parameters

object

The object to iterate over.

iteratee