ifThenElse.js 163 B

12345678
  1. export class IfThenElse {
  2. constructor (condition, ifTrue, ifFalse) {
  3. this.condition = condition;
  4. this.ifTrue = ifTrue;
  5. this.ifFalse = ifFalse;
  6. }
  7. }