0.6.0 • Published 5 years ago

zlib.es v0.6.0

Weekly downloads
112
License
Zlib
Repository
github
Last release
5 years ago

zlib.es

Build Status npm license

ECMAScript compliant lightweight zlib implementation

Distribution

npm

npm i zlib.es

files

for browser

for CommonJS

for ESModules

Usage

compression

import { deflate } from 'zlib.es';

const compressedData = deflate(rawData); // Input type is Uint8Array

decompression

import { inflate } from 'zlib.es';

const rawData = inflate(compressedData);
0.6.0

5 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago