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.gt = void 0; const main_1 = require("./main"); function gt(a, b) { if (arguments.length === 1) return (_b) => gt(a, _b); return (0, main_1.getValue)(b) > (0, main_1.getValue)(a); } exports.gt = gt;