UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

6 lines (4 loc) 132 B
import { sortByFn } from './sortBy.js'; export function sortByDescending(sortFn) { return list => sortByFn(sortFn, list, true) }