not
Returns the logical NOT of the input.
not
Returns the logical NOT of the input.
Type: transform
Parameters
- input (unknown): The input to apply logical NOT to.
Returns
Type: boolean
The logical NOT of the input converted to boolean.
Examples
not(true) // false
false|not // true
not(0) // true