Unzip a zip file to a directory using batch decompression.
Equivalent to unzip -o <zipFilePath> -d <destDir>
This function loads the entire zip file into memory before decompression.
Faster for small files (<5MB). For large files, consider using unzipStream instead.
Unzip a zip file to a directory using batch decompression. Equivalent to
unzip -o <zipFilePath> -d <destDir>This function loads the entire zip file into memory before decompression. Faster for small files (<5MB). For large files, consider using unzipStream instead.
Use fflate as the unzip backend.