function deflateRawimport { deflateRaw } from "https://deno.land/x/compress@v0.5.0/deflate/deflate_raw.ts"; deflateRaw(bytes: Uint8Array, level?: number): Uint8ArrayCompresses the input data using the DEFLATE algorithm. Parametersbytes: Uint8Array The input data as a Uint8Array to be compressed. optionallevel: number = [UNSUPPORTED] The compression level (default is DEFAULT_LEVEL). ReturnsUint8ArrayA Uint8Array containing the compressed data.