FoundKey-0x7f/packages/foundkey-js/src/acct.ts

15 lines
391 B
TypeScript
Raw Normal View History

2021-05-14 03:56:43 +00:00
export type Acct = {
username: string;
host: string | null;
};
export function parse(acct: string): Acct {
const acct_ = acct.startsWith('@') ? acct.slice(1) : acct;
const split = acct_.split('@', 2);
2021-05-14 03:56:43 +00:00
return { username: split[0], host: split[1] || null };
}
2021-05-15 08:42:48 +00:00
export function toString(acct: Acct): string {
2021-05-14 03:56:43 +00:00
return acct.host == null ? acct.username : `${acct.username}@${acct.host}`;
}