Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
graphql
/
jsutils
/
groupBy.d.ts
blob: 93b0b4506e92044ec19b70deb5d72193c1829410 [
file
] [
log
] [
blame
] [
edit
]
/**
* Groups array items into a Map, given a function to produce grouping key.
*/
export
declare
function
groupBy
<
K
,
T
>(
list
:
ReadonlyArray
<
T
>,
keyFn
:
(
item
:
T
)
=>
K
,
):
Map
<
K
,
ReadonlyArray
<
T
>>;