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.
- Host: GitHub
- URL: https://github.com/mezhevikin/zlib
- Owner: mezhevikin
- License: mit
- Created: 2022-09-21T12:15:40.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-28T08:22:35.000Z (about 3 years ago)
- Last Synced: 2024-10-29T06:33:37.484Z (12 months ago)
- Topics: compress, compression, data, decode, decompress, deflate, encode, extension, inflate, macos, swift, zip, zlib
- Language: Swift
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)