mirror of
https://example.com
synced 2024-11-23 01:46:38 +09:00
14 lines
379 B
TypeScript
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}`;
|
|
}
|