(zipped: Uint8Array)
| 17 | } |
| 18 | |
| 19 | export function createZipBlob(zipped: Uint8Array): Blob { |
| 20 | const bytes = new Uint8Array(zipped.byteLength); |
| 21 | bytes.set(zipped); |
| 22 | return new Blob([bytes.buffer], { type: ZIP_MIME_TYPE }); |
| 23 | } |
no outgoing calls
no test coverage detected