UNPKG

@prelude/cmp

Version:

Cmp module.

9 lines 257 B
import { asc, eq, dsc } from './prelude.js'; /** @returns comparision function from greater-than function. */ const ofGt = (gt) => (a, b) => gt(a, b) ? dsc : gt(b, a) ? asc : eq; export default ofGt; //# sourceMappingURL=of-gt.js.map