We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Encodes or decodes json data.
json:decode(string)
json:encode(object)
This library does not require any permissions.
local obj = json:decode('{"foo":123,"bar":"foobar"}') print(obj['foo']) -- 123 print(obj['bar']) -- foobar