macaroni

all condition

Description:
The all condition applies the AND logical operator to each contained condition. Thus, if any contained condition is false, the result is false, otherwise the result is true.

Parent: all, any, condition, conditions, none, not , wait
Value: sequence of (condition)

# form
all:
- (condition1)
- (...)

# example
all:
- app: outlook.exe
- javascript: |
    const d = new Date();
    return d.getDate() === 15;

Status: ✅ IMPLEMENTED