function inflateimport { inflate } from "https://deno.land/x/compress@v0.5.0/mod.ts"; inflate(input: Uint8Array, options?: InflateOptions): Uint8ArrayInflates the input data with the given options. Parametersinput: Uint8Array The compressed data to inflate. optionaloptions: InflateOptions = [UNSUPPORTED] Options for the inflation process. ReturnsUint8ArrayThe inflated data as a Uint8Array.