JSON
json.isNull
Value가 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.
Value가 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))