This commit is contained in:
syuilo
2021-05-14 12:56:43 +09:00
parent 92c170d540
commit eacb5fea9f
2 changed files with 51 additions and 29 deletions

14
src/acct.ts Normal file
View File

@@ -0,0 +1,14 @@
export type Acct = {
username: string;
host: string | null;
};
export function parse(acct: string): Acct {
if (acct.startsWith('@')) acct = acct.substr(1);
const split = acct.split('@', 2);
return { username: split[0], host: split[1] || null };
}
export function render(acct: Acct): string {
return acct.host == null ? acct.username : `${acct.username}@${acct.host}`;
}