JSON
json.isNull
Bir value degerinin Real JSON null sentinel olan json.null olup olmadigini dondurur.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bir value degerinin Real JSON null sentinel olan json.null olup olmadigini dondurur.
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))