Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/rambda/index.d.ts>groupBy

Faster and smaller alternative to Ramda
Latest
function groupBy
import { groupBy } from "https://deno.land/x/rambda@9.4.1/index.d.ts";

It splits list according to a provided groupFn function and returns an object.

Type Parameters

T
optional
K extends string = string

Parameters

fn: (a: T) => K

Returns

(list: T[]) => Partial<Record<K, T[]>>

Type Parameters

T
optional
K extends string = string

Parameters

fn: (a: T) => K
list: T[]

Returns

Partial<Record<K, T[]>>