UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

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