Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
variable ifElse
import { ifElse } from "https://deno.land/x/gamla@91.0.0/src/conditional.ts";

type

<Predicate extends Func, If extends Func, Else extends Func>(
predicate: Predicate,
fTrue: If,
fFalse: Else,
) => unknown