fromCurriedSort
import { fromCurriedSort } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sortable.ts";Create a Sortable from a curried Sort function.
@example
import { fromCurriedSort } from "./sortable.ts";
const numberSortable = fromCurriedSort<number>(
(second) => (first) => first < second ? -1 : first > second ? 1 : 0
);
const result = numberSortable.sort(3, 5); // -1