deno.land / x / rambda@v9.1.1 / src / descend.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { createCompareFunction } from './ascend.js'
export function descend( getFunction, a, b){ if (arguments.length === 1){ return (_a, _b) => descend( getFunction, _a, _b ) } const aValue = getFunction(a) const bValue = getFunction(b)
return createCompareFunction( aValue, bValue, 1, -1 )}
rambda

Version Info

Tagged at
2 months ago