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

4 lines
102 B
JavaScript

export function guard(F, P) {
return function (b) { return (b ? P.of(undefined) : F.zero()); };
}