🎨chore: 使用 oxlint, oxfmt&格式化代码
This commit is contained in:
@@ -8,13 +8,13 @@ export const useBlobUrlFromB64 = (dataurl: string): string => {
|
||||
if (mimeMatches === null) {
|
||||
throw new Error('dataurl is not a valid base64 image')
|
||||
}
|
||||
const mime = mimeMatches[1] //image/png
|
||||
const mime = mimeMatches[1] //image/png
|
||||
const b64data = atob(arr[1])
|
||||
let length = b64data.length
|
||||
const u8arr = new Uint8Array(length)
|
||||
while (length--) {
|
||||
u8arr[length] = b64data.charCodeAt(length)
|
||||
}
|
||||
const blob = new Blob([u8arr], {type: mime})
|
||||
const blob = new Blob([u8arr], { type: mime })
|
||||
return URL.createObjectURL(blob)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user