JSON
json.isNull
Gibt zurueck, ob ein value Real JSON null sentinel json.null ist.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gibt zurueck, ob ein value Real JSON null sentinel json.null ist.
json.isNull(value: any): boolean
local value = json.decode("null")
if json.isNull(value) then
print("The value is JSON null")
end
print(json.isNull(nil))