"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.lazyTernary = void 0;
const ternary_1 = require("../ternary");
const lazyTernary = (else_) => (then) => (condition) => (0, ternary_1.ternary)(else_)(then)(condition)();
exports.lazyTernary = lazyTernary;