about summary refs log tree commit diff
path: root/src/platform/polyfills.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/polyfills.ts')
-rw-r--r--src/platform/polyfills.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/platform/polyfills.ts b/src/platform/polyfills.ts
index 47581eff4..bb1763006 100644
--- a/src/platform/polyfills.ts
+++ b/src/platform/polyfills.ts
@@ -41,12 +41,12 @@ globalThis.atob = (str: string): string => {
       r1 === 64
         ? String.fromCharCode((bitmap >> 16) & 255)
         : r2 === 64
-        ? String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255)
-        : String.fromCharCode(
-            (bitmap >> 16) & 255,
-            (bitmap >> 8) & 255,
-            bitmap & 255,
-          )
+          ? String.fromCharCode((bitmap >> 16) & 255, (bitmap >> 8) & 255)
+          : String.fromCharCode(
+              (bitmap >> 16) & 255,
+              (bitmap >> 8) & 255,
+              bitmap & 255,
+            )
   }
   return result
 }