Skip to main content
Module

x/rambda/index.d.ts>sort

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

It returns copy of list sorted by sortFn function, where sortFn needs to return only -1, 0 or 1.

Parameters

sortFn: (a: T, b: T) => number
list: T[]

Parameters

sortFn: (a: T, b: T) => number

Returns

(list: T[]) => T[]