JavaScript Object Notation interface.
This module exposes functions to dump and load variables encoded in JSON format. See ://json.org for more details.
The module is meant to be included in a namespace (for example, json); it's not advisable to load it via load. Instead, use the import directive as in the following example:
import from json > json.JSONencode( ["a", 1, 1.2] )
JSONError | Error generated after error conditions on JSON operations. |
JSONdecode | Decode an item stored in JSON format. |
JSONencode | Encode an item in JSON format. |