An open API service indexing awesome lists of open source software.

https://github.com/iolanguage/zlib


https://github.com/iolanguage/zlib

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Zlib
The Zlib object can be used to compress and uncompress data using the
zlib
lossless data compression algorithm.

Example use:
```Io
compressedData := Zlib compress(uncompressedData)
uncompressedData := Zlib uncompress(compressedData)
```

# Installation
`zlib` should be installed and foundable in your system. Then:
```
eerie install https://github.com/IoLanguage/Zlib.git
```