You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 years ago | |
---|---|---|
tests | 4 years ago | |
.gitignore | 4 years ago | |
.npmignore | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
bz2.js | 4 years ago | |
index.html | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago | |
test.js | 4 years ago |
README.md
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
.