mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-01-24 21:43:08 +02:00
4 lines
138 B
TypeScript
4 lines
138 B
TypeScript
export default (acct: string) => {
|
|
const splitted = acct.split('@', 2);
|
|
return { username: splitted[0], host: splitted[1] || null };
|
|
};
|