format: run prettify

This commit is contained in:
SethBurkart123
2025-05-05 18:04:10 +10:00
parent 771169348f
commit 0f9f618164
142 changed files with 28768 additions and 20790 deletions
+2 -2
View File
@@ -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;