function filterValues
filterValues<T>(): Record<string, T>Returns a new record with all entries of the given record except the ones that have a value that does not match the given predicate.
Examples
Example 1
Example 1
import { filterValues } from "@std/collections/filter_values"; import { assertEquals } from "@std/assert/assert_equals"; const people = { "Arnold": 37, "Sarah": 7, "Kim": 23, }; const adults = filterValues(people, (it) => it >= 18); assertEquals( adults, { "Arnold": 37, "Kim": 23, }, );
Type Parameters
T