IfThenElseCondition
Examples
IF conditionA then conditionB else conditionC
import { conditions } from '@nucypher/taco';
const conditionA = ...
const conditionB = ...
const conditionC = ...
const condition = new conditions.ifThenElse.IfThenElseCondition({
ifCondition: conditionA,
thenCondition: conditionB,
elseCondition: conditionC,
});IF conditionA then conditionB else True
Nested IfThenElseCondition
Development References
Last updated