mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00
fix(style): remove doublequotes
This commit is contained in:
parent
6fdb6be31e
commit
e4ffaa2ff6
@ -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', '+', '/',
|
||||
];
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user