( event: H3Event, response: Partial<RenderResponse>, )
| 22 | * @returns { Promise<void> } |
| 23 | */ |
| 24 | export async function useDeflateCompression( |
| 25 | event: H3Event, |
| 26 | response: Partial<RenderResponse>, |
| 27 | ): Promise<void> { |
| 28 | await compress(event, response, 'deflate') |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Compresses the response with [zlib.brotliCompress]{@link https://www.w3schools.com/nodejs/ref_zlib.asp} |
no test coverage detected