Streaming Zlib compression
+ new Zlib(opts: ZlibOptions, cb?: FlateStreamHandler): Zlib
Creates a Zlib stream
| Name | Type | Description | 
|---|---|---|
| opts | ZlibOptions | The compression options | 
| cb? | FlateStreamHandler | The callback to call whenever data is deflated | 
Returns: Zlib
+ new Zlib(cb?: FlateStreamHandler): Zlib
Creates a Zlib stream
| Name | Type | Description | 
|---|---|---|
| cb? | FlateStreamHandler | The callback to call whenever data is deflated | 
Returns: Zlib
• ondata: FlateStreamHandler
The handler to call whenever data is available
▸ push(chunk: Uint8Array, final?: boolean): void
Pushes a chunk to be zlibbed
| Name | Type | Description | 
|---|---|---|
| chunk | Uint8Array | The chunk to push | 
| final? | boolean | Whether this is the last chunk | 
Returns: void