@lichtblick/wasm-bz2
v1.0.0
Published
Bzip2 decompression compiled to WebAssembly
Downloads
3,406
Readme
@lichtblick/wasm-bz2
Bzip2 decompression compiled to WebAssembly
Introduction
This package provides a WebAssembly build of https://gitlab.com/bzip2/bzip2, the official Bzip2 library. Currently only a decompression function is provided.
Usage
import Bzip2 from "@lichtblick/wasm-bz2";
const bzip2 = await Bzip2.init();
try {
const buffer = new Uint8Array([...]);
const maxSize = 100;
const decompressedBuffer = Bzip2.decompress(buffer, maxSize, { small: false });
} catch (error) {
console.error(error);
}