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.
Parses a JSON string like json.decode.
json.parse(json: string, options?: DecodeOptions): any
json
string
options
DecodeOptions
decoded
any
useNull
boolean
maxDepth
integer
local settings = json.parse('{"volume":0.75,"theme":"dark","missing":null}', { useNull = true, }) print(settings.volume) print(settings.theme) print(json.isNull(settings.missing))