Skip to main content

JSON

Module: _json

Decode(Json:string)return(Data:table<any>,Success:boolean)
--[=[Convert JSON string to Table]=]
_json.Decode(Json: string) -> Data: {any}, Success: boolean
1
Encode(Value:any)return(Json:string)
--[=[Convert to JSON string]=]
_json.Encode(Value: any) -> Json: string
2