Skip to main content
Module

x/compress/mod.ts

compress and uncompress for Deno
Go to Latest
File
export * as tar from "./tar/mod.ts";export * as tgz from "./tgz/mod.ts";export { gzipFile, gunzipFile, GzipStream, /** slow */ // gzip, // gunzip,} from "./gzip/mod.ts";/** slow */// export { deflateRaw, inflateRaw } from "./deflate/mod.ts";/** fast */export { deflate, inflate, deflateRaw, inflateRaw, gzip, gunzip,} from "./zlib/mod.ts";