deno.land / std@0.167.0 / collections / filter_keys.ts

filter_keys.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * 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. * * @example * ```ts * import { filterKeys } from "https://deno.land/std@$STD_VERSION/collections/filter_keys.ts"; * import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts"; * * const menu = { * "Salad": 11, * "Soup": 8, * "Pasta": 13, * }; * const menuWithoutSalad = filterKeys(menu, (it) => it !== "Salad"); * * assertEquals( * menuWithoutSalad, * { * "Soup": 8, * "Pasta": 13, * }, * ); * ``` */export function filterKeys<T>( record: Readonly<Record<string, T>>, predicate: (key: string) => boolean,): Record<string, T> { const ret: Record<string, T> = {}; const keys = Object.keys(record);
for (const key of keys) { if (predicate(key)) { ret[key] = record[key]; } }
return ret;}
std

Version Info

Tagged at
a year ago