I need to compress files to a tar.gz format in a React Native application before sending them to the backend. I found packages in Node.js for tar and there's a React Native library for gzip, but I'm not sure if there's a library that does what I need.
I found libraries for tar: https://www.npmjs.com/package/tar
and gzip: https://www.npmjs.com/package/react-native-gzip
but I haven't found a library for doing both in React Native