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