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.
Returns the visible keys of a table in a new table marked as a JSON array.
json.keys(object: table): table
object
table
keys
local record = { name = "Real", enabled = true, [5] = "numeric key", } for _, key in ipairs(json.keys(record)) do print(key) end