jsonParse
The jsonParse function parses a JSON string that may have come from jsonString.
jsonParse(string: string): any| Type | Description | |
|---|---|---|
string | string | The JSON string to parse. |
| returns | any | The parsed value. |
This is a wrapper around JSON.parse that provides type safety and handles potential parsing errors gracefully. Use this to deserialize strings created by jsonString.
Since
v0.0.0