fix: fix base64 blob (#1356)

* fix(type): fix ant-design-vue  ->

* fix: fix base64 blob
This commit is contained in:
CXM 2021-11-11 22:18:22 +08:00 committed by GitHub
parent c2b207dd51
commit 013cb7f16b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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