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

https://github.com/mezhevikin/zlib

🗜 A tiny Swift extension to decompress Zlib data.
https://github.com/mezhevikin/zlib

compress compression data decode decompress deflate encode extension inflate macos swift zip zlib

Last synced: 3 months ago
JSON representation

🗜 A tiny Swift extension to decompress Zlib data.

Awesome Lists containing this project

README

          

# Zlib

🗜 A tiny Swift extension to decompress Zlib data.

```swift
import Zlib

// Decompressed data
print(data.decompressed)

// Decompressed string
print(data.decompressed.string)
```

### Swift Package Manager
```
https://github.com/mezhevikin/Zlib.git
```

Inspired [vauxhall](https://stackoverflow.com/a/55558641/2168735)