General Functions

General functions support common checks and utility operations.

FunctionDescriptionExamples
IS_EMPTYCheck if value is emptyIS_EMPTY("") → true
IS_EMPTY([]) → true
IS_EMPTY({}) → true
IS_EMPTY(NULL) → true
IS_EMPTY(0) → false
IS_EMPTY(" ") → false
IS_EMPTY(FALSE) → false
LENLength of text or arrayLEN("hello") → 5
LEN("") → 0LEN([1, 2, 3]) → 3
GETReturns 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"
General Functions - TemplateDocs Documentation