1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-06 01:15:56 +02:00
Files
misskey/src/acct.ts
syuilo eacb5fea9f wip
2021-05-14 12:56:43 +09:00

15 lines
378 B
TypeScript

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}`;
}