mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
25 lines
432 B
TypeScript
25 lines
432 B
TypeScript
|
// Loaded from https://deno.land/x/compress@v0.3.8/mod.ts
|
||
|
|
||
|
|
||
|
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";
|