1024jp / GzipSwift

Swift package that enables gzip/gunzip Data using zlib
MIT License
533 stars 132 forks source link

Support decompression for combined compression #53

Closed dev-yong closed 1 year ago

dev-yong commented 1 year ago

Currently, after merging the array of compressed elements, if you decompress this composite, only the first compressed one comes out. I updated all elements to be decompressed.

AS-IS gunzip(gzip("a") + gzip("b")) // "a"

TO-BE gunzip(gzip("a") + gzip("b")) // "ab"

1024jp commented 1 year ago

Thank you for the enhancement! (sorry for my late reply.)