function compressimport { compress } from "https://deno.land/x/compress@v0.4.8/zip/mod.ts"; compress(src: string | string[],dest?: string,options?: compressInterface,): Promise<boolean>Compresses the specified files into an archive. Parameterssrc: string | string[] The file(s) to compress. It can be a single file or an array of files. optionaldest: string = [UNSUPPORTED] The name of the archive file. Defaults to "./archive.zip". optionaloptions: compressInterface Optional compress options. ReturnsPromise<boolean>A promise that resolves to a boolean indicating whether the compression was successful.