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