Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns whether a value is Real’s JSON null sentinel, json.null.
json.isNull(value: any): boolean
value
any
isNull
boolean
local value = json.decode("null") if json.isNull(value) then print("The value is JSON null") end print(json.isNull(nil))