mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 05:53:08 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
19 lines
498 B
TypeScript
19 lines
498 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export type Acct = {
|
|
username: string;
|
|
host: string | null;
|
|
};
|
|
|
|
export function parse(acct: string): Acct {
|
|
if (acct.startsWith('@')) acct = acct.substring(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}`;
|
|
}
|