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