Compression level for zip operations, aligning with fflate's DeflateOptions.level.
0: No compression (store only) — best for already-compressed data (images, videos, archives)
1: Fastest compression
6: Default compression (balanced)
9: Best compression (slowest)
Higher values usually take disproportionately longer than the reduction in final size.
Binary data typically benefits more from higher levels than text data.
Compression level for zip operations, aligning with fflate's
DeflateOptions.level.0: No compression (store only) — best for already-compressed data (images, videos, archives)1: Fastest compression6: Default compression (balanced)9: Best compression (slowest)Higher values usually take disproportionately longer than the reduction in final size. Binary data typically benefits more from higher levels than text data.