Skip to content

Commit 39e265b

Browse files
committed
Fixed formatting
1 parent d3268d6 commit 39e265b

File tree

1 file changed

+1
-1
lines changed
  • packages/storage/src/platform/browser

1 file changed

+1
-1
lines changed

packages/storage/src/platform/browser/base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { missingPolyFill } from '../../implementation/error';
1919

2020
/** Converts a Base64 encoded string to a binary string. */
2121
export function decodeBase64(encoded: string): string {
22-
if ((typeof atob === 'undefined')) {
22+
if (typeof atob === 'undefined') {
2323
throw missingPolyFill('base-64');
2424
}
2525
return atob(encoded);

0 commit comments

Comments
 (0)