lte
import { lte } from "https://raw.githubusercontent.com/baetheus/fun/main/sortable.ts";
Construct a curried less than or equal to function over A from Sortable.
@example
import * as O from "./sortable.ts";
import { SortableNumber } from "./number.ts";
import { pipe } from "./fn.ts";
const lte = O.lte(SortableNumber);
const result1 = pipe(1, lte(2)); // true
const result2 = pipe(2, lte(1)); // false
const result3 = pipe(1, lte(1)); // true