JSON
json.isObject
Value가 Real JSON table detection에 의해 treated as a JSON object 되는지 반환합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Value가 Real JSON table detection에 의해 treated as a JSON object 되는지 반환합니다.
json.isObject(value: any): boolean
local record = json.object({ name = "Real" })
local items = json.array({ "one", "two" })
local empty = {}
print(json.isObject(record))
print(json.isObject(items))
print(json.isObject(empty))