Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 182 Bytes

File metadata and controls

15 lines (10 loc) · 182 Bytes

json

JSON encoding/decoding utilities.

json.encode(table)

local str = json.encode({a = 1})

json.decode(string)

local tbl = json.decode('{"a":1}')