Minor: remove unused js

このコミットが含まれているのは:
n9k 2022-07-24 01:27:55 +00:00
コミット c45031277c
1個のファイルの変更0行の追加24行の削除

ファイルの表示

@ -275,30 +275,6 @@ const delete_chat_messages = (seqs) => {
}
}
const hexdigest = async (string, bytelength) => {
uint8array = new TextEncoder().encode(string);
arraybuffer = await crypto.subtle.digest("sha-256", uint8array);
array = Array.from(new Uint8Array(arraybuffer).slice(0, bytelength));
hex = array.map(b => b.toString(16).padStart(2, "0")).join("");
return hex
}
const escape_css_string = (string) => {
/* https://drafts.csswg.org/cssom/#common-serializing-idioms */
const result = [];
for (const char of string) {
if (char === "\0") {
result.push("\ufffd");
} else if (char < "\u0020" || char == "\u007f") {
result.push(`\\${char.charCodeAt().toString(16)}`);
} else if (char == '"' || char == "\\") {
result.push(`\\${char}`);
} else {
result.push(char);
}
}
return result.join("");
}
let users = {};
let stats = null;
let stats_received = null;