import { downloadZip } from "client-zip" /** * 快速创建一个 Zip 文件,不压缩,仅为了捆绑文件 */ export async function fastZip(files: { name: string; input: File | Response }[]) { // get the ZIP stream in a Blob const blob = await downloadZip(files).blob() return blob }