Is your feature request related to a problem? Please describe.
It would be very useful if Jaseci had some gzip compatible standard library functions.
Describe the solution you'd like
It would be helpful if there were some actions like zlib.compress
and zlib.decompress
that can be used in the Jac programming language. To adhere to Jac's principles these functions should take in base64 strings as input and produce base64 as output. I'd think a good design would be to convert the base64 input into bytes, perform compression, then encode the compressed bytes into base64 again for the return.
If this feature request is accepted, would you be willing to work on a PR?
If time allows.
Additional context
I'd imagine this library would piggyback on pythons zlib functions.
enhancement good first issue