mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 20:07:33 -07:00
799ac84ee3
This reverts commit 8033492c7c4827fbff05782d08ae65bc3440c080.
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
export type Acct = {
|
|
username: string;
|
|
host: string | null;
|
|
};
|
|
|
|
export function parse(acct: string): Acct {
|
|
if (acct.startsWith("@")) acct = acct.substr(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}`;
|
|
}
|