mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-05 16:49:17 +00:00
7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
import Acct from './type';
|
|
|
|
export default (acct: string): Acct => {
|
|
if (acct.startsWith('@')) acct = acct.substr(1);
|
|
const split = acct.split('@', 2);
|
|
return { username: split[0], host: split[1] || null };
|
|
};
|