Skip to main content

wasm_gzip

Gzip encryption and decryption wasm implementation, support Deno

Build Status GitHub GitHub release (Deno)

Usage

import {
  gzipDecode,
  gzipEncode,
} from "https://github.com/manyuanrong/wasm_gzip/raw/master/mod.ts";

const helloWorld = new TextEncoder().encode("Hello World");

const encoded = gzipEncode(helloWorld);
const decoded = gzipDecode(encoded);