loads(string) → any
Deserialize `str` to a Lua value, converting values like so:
*----------------*---------------------* | JSON | Lua | *----------------*---------------------* | object | table (associative) | | array | table (list) | | string | string | | number (int) | integer | | number (float) | number | | true | boolean | | false | boolean | | null | nil | *----------------*---------------------*
dumps(any) → string
Serialize `obj` to a JSON-formatted string.
See the table in `loads` for information on how values are converted.