|
@@ -5,7 +5,7 @@ export function dataURLtoBlob(base64Buf: string): Blob {
|
|
const arr = base64Buf.split(',');
|
|
const arr = base64Buf.split(',');
|
|
const typeItem = arr[0];
|
|
const typeItem = arr[0];
|
|
const mime = typeItem.match(/:(.*?);/)![1];
|
|
const mime = typeItem.match(/:(.*?);/)![1];
|
|
- const bstr = atob(arr[1]);
|
|
|
|
|
|
+ const bstr = window.atob(arr[1]);
|
|
let n = bstr.length;
|
|
let n = bstr.length;
|
|
const u8arr = new Uint8Array(n);
|
|
const u8arr = new Uint8Array(n);
|
|
while (n--) {
|
|
while (n--) {
|