Inverter
This node changes true values to be false, and false values to be true. It is identical to a logic NOT operation.

The Inverter node runs JavaScript in the background and interprets truthy and falsy values in the same fashion. It is equal to creating an Expression node with the expression !value.
Inputs
Value
| Data | Description |
|---|---|
| Value | The value to invert. |
Control
| Signal | Description |
|---|---|
| Do | Triggers evaluation and emits True/False condition signals based on the inverted value |
Outputs
Data
| Data | Description |
|---|---|
| Result | The result of inverting the input Value. This is equal to either True or False |
Signals
| Signal | Description |
|---|---|
| True Condition | Emitted when the inverted value is true on Do |
| False Condition | Emitted when the inverted value is false on Do |
Advanced
The inverter is equal to creating the following expression:
!value .