function filterKeys
filterKeys<T>(): Record<string, T>Returns a new record with all entries of the given record except the ones that have a key that does not match the given predicate.
Examples
Example 1
Example 1
import { filterKeys } from "@std/collections/filter_keys"; import { assertEquals } from "@std/assert/assert_equals"; const menu = { "Salad": 11, "Soup": 8, "Pasta": 13, }; const menuWithoutSalad = filterKeys(menu, (it) => it !== "Salad"); assertEquals( menuWithoutSalad, { "Soup": 8, "Pasta": 13, }, );
Type Parameters
T