Skip to content

not

not(value) → boolean · Type

Logical NOT. Negates a boolean value.

  • value (required): boolean value
utlx
{
  negTrue: not(true),                        // false
  negFalse: not(false),                      // true
  hasName: not(isEmpty($input.name))         // true if name is non-empty
}

Released under AGPL-3.0.