UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

11 lines (10 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.lt = void 0; const main_1 = require("./main"); function lt(a, b) { if (arguments.length === 1) return (_b) => lt(a, _b); return (0, main_1.getValue)(b) < (0, main_1.getValue)(a); } exports.lt = lt;