mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
feat: complete migration logic
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
const base64ToBlob = (base64: string, contentType: string = ''): Blob => {
|
||||
const byteCharacters = atob(base64.split(',')[1]);
|
||||
const byteCharacters = atob(base64);
|
||||
const byteArrays: Uint8Array[] = [];
|
||||
|
||||
for (let offset = 0; offset < byteCharacters.length; offset += 512) {
|
||||
|
||||
Reference in New Issue
Block a user