function deflateimport { deflate } from "https://deno.land/x/compress@v0.5.0/mod.ts"; deflate(input: Uint8Array, options?: DeflateOptions): Uint8ArrayCompresses the input data using deflate algorithm. Parametersinput: Uint8Array The data to compress. optionaloptions: DeflateOptions = [UNSUPPORTED] Options for the deflate operation. ReturnsUint8ArrayThe compressed data as a Uint8Array.