@technobuddha > library > JSON
Serialization
| Name | Type | Description |
|---|---|---|
| replacer | Function | Used with JSON.stringify to encode a wider range of objects into strings that can later be decoded with reviver |
| reviver | Function | Used with JSON.parse to decode objected encoded by replacer |
| specialBegin | Constant | The beginning of a special JSON value |
| specialFinish | Constant | The end of a special JSON value |
| TBJsonArray | Type | Matches a JSON array. |
| TBJsonObject | Type | Matches a JSON object. |
| TBJsonPrimitive | Type | Matches any valid JSON primitive value. |
| TBJsonValue | Type | Matches any valid JSON value. |