Methods
(package, static) decodeCacheObject(encodedStr) → {Object}
Decodes a Base64 encoded string into a JSON object.
Parameters:
Name | Type | Description |
---|---|---|
encodedStr |
string | The Base64 encoded string to decode. |
Returns:
The decoded JSON object.
- Type
- Object
(package, static) encodeCacheObject(obj) → {string}
Encodes a given object into a Base64 string.
Parameters:
Name | Type | Description |
---|---|---|
obj |
Object | The object to encode. |
Returns:
The Base64 encoded string representation of the object.
- Type
- string