deno.land / std@0.158.0 / collections / group_by.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
45
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Applies the given selector to each element in the given array, returning a Record containing the results as keys * and all values that produced that key as values. * * Example: * * ```ts * import { groupBy } from "https://deno.land/std@$STD_VERSION/collections/group_by.ts"; * import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts"; * * type Person = { * name: string; * }; * * const people: Person[] = [ * { name: 'Anna' }, * { name: 'Arnold' }, * { name: 'Kim' }, * ]; * const peopleByFirstLetter = groupBy(people, it => it.name.charAt(0)) * * assertEquals(peopleByFirstLetter, { * 'A': [ { name: 'Anna' }, { name: 'Arnold' } ], * 'K': [ { name: 'Kim' } ], * }) * ``` */export function groupBy<T, K extends string>( array: readonly T[], selector: (el: T) => K,): Partial<Record<K, T[]>> { const ret: Partial<Record<K, T[]>> = {};
for (const element of array) { const key = selector(element); const arr = ret[key] ??= [] as T[]; arr.push(element); }
return ret;}
std

Version Info

Tagged at
a year ago