import { sortBy } from "https://deno.land/x/rambda@9.4.1/immutable.d.ts";
It returns copy of list
sorted by sortFn
function, where sortFn
function returns a value to compare, i.e. it doesn't need to return only -1
, 0
or 1
.
import { sortBy } from "https://deno.land/x/rambda@9.4.1/immutable.d.ts";
It returns copy of list
sorted by sortFn
function, where sortFn
function returns a value to compare, i.e. it doesn't need to return only -1
, 0
or 1
.