Class: CacheBase64

(package) cache~CacheBase64

A static class for encoding and decoding cache objects using Base64.

Since:
  • 2.0.0
Source:

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.

Since:
  • 2.0.0
Source:
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.

Since:
  • 2.0.0
Source:
Returns:

The Base64 encoded string representation of the object.

Type
string