-
Notifications
You must be signed in to change notification settings - Fork 538
Closed
Description
const zipFileStream = new TransformStream();
const zipWriter = new zipJS.ZipWriter(zipFileStream.writable);
await zipWriter.add("text.txt", new Blob(["Hello, world!"]).stream()); // <--
await zipWriter.close();
const zipFileBlob = await new Response(zipFileStream.readable).blob();Here, the promise returned by the .add method never resolves.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels