Skip to main content
Module

std/collections/mod.ts>mapValues

The Deno Standard Library
Latest
function mapValues
Re-export
import { mapValues } from "https://deno.land/std@0.223.0/collections/mod.ts";

Applies the given transformer to all values in the given record and returns a new record containing the resulting keys associated to the last value that produced them.

Examples

Example 1

import { mapValues } from "https://deno.land/std@0.223.0/collections/map_values.ts";
import { assertEquals } from "https://deno.land/std@0.223.0/assert/assert_equals.ts";

const usersById = {
  "a5ec": { name: "Mischa" },
  "de4f": { name: "Kim" },
};
const namesById = mapValues(usersById, (it) => it.name);

assertEquals(
  namesById,
  {
    "a5ec": "Mischa",
    "de4f": "Kim",
  },
);

Type Parameters

T
O
K extends string

Parameters

record: Readonly<Record<K, T>>
transformer: (value: T, key: K) => O

Returns

Record<K, O>

Applies the given transformer to all values in the given record and returns a new record containing the resulting keys associated to the last value that produced them.

Examples

Example 1

import { mapValues } from "https://deno.land/std@0.223.0/collections/map_values.ts";
import { assertEquals } from "https://deno.land/std@0.223.0/assert/assert_equals.ts";

const usersById = {
  "a5ec": { name: "Mischa" },
  "de4f": { name: "Kim" },
};
const namesById = mapValues(usersById, (it) => it.name);

assertEquals(
  namesById,
  {
    "a5ec": "Mischa",
    "de4f": "Kim",
  },
);

Type Parameters

T
O
K extends string

Parameters

record: Readonly<Partial<Record<K, T>>>
transformer: (value: T, key: K) => O

Returns

Partial<Record<K, O>>