1
0
Fork 1
mirror of https://example.com synced 2024-11-23 01:46:38 +09:00
firefish/packages/firefish-js/src/acct.ts
2023-07-20 04:17:05 +09:00

14 lines
379 B
TypeScript

export type Acct = {
username: string;
host: string | null;
};
export function parse(acct: string): Acct {
if (acct.startsWith("@")) acct = acct.slice(1);
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}`;
}