You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/utils/zip.js

10 lines
272 B
JavaScript

import 'streamsaver/examples/zip-stream';
export const createZipStream = window.ZIP;
export async function createZipBlob(underlyingSource) {
return new Response(createZipStream(underlyingSource)).blob();
}
window.Hydro.utils.zip = { createZipStream, createZipBlob };