feat: complete migration logic

This commit is contained in:
sethburkart123
2024-11-13 09:27:14 +11:00
parent 172021d0d0
commit e5c05c0dca
7 changed files with 242 additions and 69 deletions
+1 -1
View File
@@ -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) {