diff options
Diffstat (limited to 'src/api/util/utility/Base64.ts')
-rw-r--r-- | src/api/util/utility/Base64.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/api/util/utility/Base64.ts b/src/api/util/utility/Base64.ts index c6d1257c..7426d22b 100644 --- a/src/api/util/utility/Base64.ts +++ b/src/api/util/utility/Base64.ts @@ -16,8 +16,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -const alphabet = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+"; +const alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+"; // binary to string lookup table const b2s = alphabet.split(""); |