Methods
(async, package, static) deflateCacheObject(obj) → {Promise.<Buffer>}
Compresses a JavaScript object using zlib
deflate.
Parameters:
Name | Type | Description |
---|---|---|
obj |
Object | The object to be compressed. |
Throws:
-
If there is an error during compression.
- Type
- Error
Returns:
A promise that resolves with the compressed data as a Buffer
.
- Type
- Promise.<Buffer>
(async, static) inflateCacheObject(deflatedObj) → {Promise.<Object>}
Inflates a deflated cache object.
Parameters:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
deflatedObj |
Record.<('type'|'data'), string> | The deflated cache object. Properties
|
Throws:
-
If the type of the deflated object is invalid.
- Type
- InvalidTypeError
Returns:
A promise that resolves to the inflated cache object.
- Type
- Promise.<Object>