Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 483 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 483 Bytes

bz2

bzip2 library for JavaScript

import { decompress } from 'bz2';

const output = decompress(input);

Available from the npm registry as bz2 and from the GitHub registry as @sheetjs/bz2.

Try out the demo.

API

decompress(data, test)

  • data: Uint8Array - The data to be decompressed.
  • test: boolean - Verify integrity of compressed data. Default: false.
  • Returns: Uint8Array

Decompresses data.