Revert "Subtree merged in packages/misskey-js"
This reverts commit3b524f32bf, reversing changes made to5be54451a8.
This commit is contained in:
parent
abdb43c440
commit
772e05e835
34 changed files with 0 additions and 17041 deletions
|
|
@ -1,14 +0,0 @@
|
|||
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}`;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue