misskey/src/acct.ts

15 lines
380 B
TypeScript
Raw Normal View History

2021-05-14 05:56:43 +02:00
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 };
}
2021-05-15 10:42:48 +02:00
export function toString(acct: Acct): string {
2021-05-14 05:56:43 +02:00
return acct.host == null ? acct.username : `${acct.username}@${acct.host}`;
}