function filterEntries
filterEntries<T>(): Record<string, T>Returns a new record with all entries of the given record except the ones that do not match the given predicate.
Examples
Example 1
Example 1
import { filterEntries } from "@std/collections/filter_entries"; import { assertEquals } from "@std/assert/assert_equals"; const menu = { "Salad": 11, "Soup": 8, "Pasta": 13, } as const; const myOptions = filterEntries( menu, ([item, price]) => item !== "Pasta" && price < 10, ); assertEquals( myOptions, { "Soup": 8, }, );
Type Parameters
T