2023-04-08 02:44:27 +02:00
|
|
|
export type Acct = {
|
|
|
|
username: string;
|
|
|
|
host: string | null;
|
|
|
|
};
|
|
|
|
|
|
|
|
export function parse(acct: string): Acct {
|
2023-07-13 08:56:22 +02:00
|
|
|
if (acct.startsWith("@")) acct = acct.slice(1);
|
2023-04-08 02:44:27 +02:00
|
|
|
const split = acct.split("@", 2);
|
|
|
|
return { username: split[0], host: split[1] || null };
|
|
|
|
}
|
|
|
|
|
|
|
|
export function toString(acct: Acct): string {
|
|
|
|
return acct.host == null ? acct.username : `${acct.username}@${acct.host}`;
|
|
|
|
}
|