jormungandr-bite/packages/iceshrimp-js/src/acct.ts

15 lines
379 B
TypeScript
Raw Normal View History

export type Acct = {
username: string;
host: string | null;
};
export function parse(acct: string): Acct {
2023-07-13 00:56:22 -06:00
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}`;
}