Contains the code for the JSON functions.
Methods
-
(static) Parse(JSONString) → {Object}
-
This function parses a JSON String.
Parameters:
Name Type Description JSONString
String The string which should be parsed. Returns:
The parsed JSON object.- Type
- Object
-
(static) Stringify(JSONObject) → {String}
-
This function stringifies a given JavaScript object.
Parameters:
Name Type Description JSONObject
Object The object which should be stringified. Returns:
The stringified JSON object.- Type
- String