libarchivejs
libarchivejs copied to clipboard
Create ZIP file
Thanks for the great library.
Is there any way I can create a ZIP file with signature 50 4b 03 04
? The configuration below results in 42 5A 68
(bzip2) for example:
const outputFile = await Archive.write({
files: outFiles,
outputFileName: "test.epub",
compression: ArchiveCompression.BZIP2,
format: ArchiveFormat.ZIP
});