import { sortBy } from "https://dotland.deno.dev/x/rambda@v9.2.0/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://dotland.deno.dev/x/rambda@v9.2.0/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
.