fix(style): remove doublequotes

This commit is contained in:
Yuzu 2022-08-20 01:12:32 -05:00
parent 6fdb6be31e
commit e4ffaa2ff6

View File

@ -8,27 +8,27 @@ export async function urlToBase64(url: string): Promise<string> {
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
const base64abc: string[] = [
"A", "B", "C",
"D", "E", "F",
"G", "H", "I",
"J", "K", "L",
"M", "N", "O",
"P", "Q", "R",
"S", "T", "U",
"V", "W", "X",
"Y", "Z", "a",
"b", "c", "d",
"e", "f", "g",
"h", "i", "j",
"k", "l", "m",
"n", "o", "p",
"q", "r", "s",
"t", "u", "v",
"w", "x", "y",
"z", "0", "1",
"2", "3", "4",
"5", "6", "7",
"8", "9", "+", "/",
'A', 'B', 'C',
'D', 'E', 'F',
'G', 'H', 'I',
'J', 'K', 'L',
'M', 'N', 'O',
'P', 'Q', 'R',
'S', 'T', 'U',
'V', 'W', 'X',
'Y', 'Z', 'a',
'b', 'c', 'd',
'e', 'f', 'g',
'h', 'i', 'j',
'k', 'l', 'm',
'n', 'o', 'p',
'q', 'r', 's',
't', 'u', 'v',
'w', 'x', 'y',
'z', '0', '1',
'2', '3', '4',
'5', '6', '7',
'8', '9', '+', '/',
];
/**