Function inflateAndUnpackB64
- inflateAndUnpackB64(
data: string,
opts?: { inflateOptions?: InflateOptions },
): any Parameters
- data: string
Any Base64 data that has been compressed with
Optional
opts: { inflateOptions?: InflateOptions }Optional parameters.
Optional
inflateOptions?: InflateOptionsInflate options.
Returns any
Inflated and unpacked data.
- data: string
Converts Base64 string to Uint8Array / inflates then unpacks with MessagePack. This function is the inverse of
packAndDeflateB64
.