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