Files
manolia-alpha/node_modules/fp-ts/lib/Zero.js
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

7 lines
195 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.guard = guard;
function guard(F, P) {
return function (b) { return (b ? P.of(undefined) : F.zero()); };
}