This commit is contained in:
2026-09-13 14:58:27 +05:30
parent 4f80c16043
commit 9c7a16b57c
24 changed files with 2467 additions and 80 deletions
+5
View File
@@ -0,0 +1,5 @@
import { ZipArchive } from "archiver";
export function createZipArchive(level = 6): ZipArchive {
return new ZipArchive({ zlib: { level } });
}