(feat): add tauth

(fix): formatted
This commit is contained in:
Alois 2026-04-14 01:12:34 +02:00
commit fb742bd068
15 changed files with 141 additions and 74 deletions

View file

@ -25,10 +25,7 @@ function bytesToB64u(value: Uint8Array): string {
output += index + 2 < value.length ? alphabet[chunk & 63] : "=";
}
return output
.replace(/\+/g, "-")
.replace(/\//g, "_")
.replace(/=+$/g, "");
return output.replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/g, "");
}
/**