Functions for reading and writing files in JSON format (http://json.org).
json | Functions for reading and writing files in JSON format (http://json.org). |
Exceptions | |
JsonFormatException | Indicates that a formatting error was encountered when reading JSON. |
Functions | |
decode | Decode JSON data in a string to a result in a <Object>. |
encode | Encode a value in a <Object> to JSON data in a string. |
Decode JSON data in a string to a result in a Object.
FUNCTION decode( json: String ): Object
Encode a value in a Object to JSON data in a string.
FUNCTION encode( data: Object ): String