JSON
json.isNull
Devuelve si un value es Real JSON null sentinel, json.null.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Devuelve si un value es Real JSON null sentinel, json.null.
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))