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))