IfThenElseCondition
Examples
IF conditionA then conditionB else conditionC
conditionA then conditionB else conditionCimport { 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
conditionA then conditionB else TrueNested IfThenElseCondition
IfThenElseConditionDevelopment References
Last updated