mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 05:26: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.
|
// 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', '+', '/',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user