General Functions
General functions support common checks and utility operations.
| Function | Description | Examples |
|---|---|---|
| IS_EMPTY | Check if value is empty | IS_EMPTY("") → true IS_EMPTY([]) → true IS_EMPTY({}) → true IS_EMPTY(NULL) → true IS_EMPTY(0) → false IS_EMPTY(" ") → false IS_EMPTY(FALSE) → false |
| LEN | Length of text or array | LEN("hello") → 5 LEN("") → 0LEN([1, 2, 3]) → 3 |
| GET | Returns the value at path of an object or array. Use dot notation for nested access. Array indices start at 1. | GET({"name": "John"}, "name") -> "John" GET([10, 20, 30], "1") -> 10 GET({"user": {"name": "Jane"}}, "user.name") -> "Jane" |