Innovenergy_trunk/frontend/node_modules/fp-ts/lib/Zero.js

8 lines
219 B
JavaScript

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