Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Devuelve si un value se treated as a JSON array por Real JSON table detection.
json.isArray(value: any): boolean
value
any
isArray
boolean
local items = json.array({ "one", "two" }) local record = json.object({ name = "Real" }) local inferred = { "one", "two" } print(json.isArray(items)) print(json.isArray(record)) print(json.isArray(inferred))