mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
format: run prettify
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const base64ToBlob = (base64: string, contentType: string = ''): Blob => {
|
||||
const base64ToBlob = (base64: string, contentType: string = ""): Blob => {
|
||||
const byteCharacters = atob(base64);
|
||||
const byteArrays: Uint8Array[] = [];
|
||||
|
||||
@@ -14,4 +14,4 @@ const base64ToBlob = (base64: string, contentType: string = ''): Blob => {
|
||||
return new Blob(byteArrays, { type: contentType });
|
||||
};
|
||||
|
||||
export default base64ToBlob;
|
||||
export default base64ToBlob;
|
||||
|
||||
Reference in New Issue
Block a user