mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 23:17:33 -07:00
4 lines
128 B
TypeScript
4 lines
128 B
TypeScript
export default acct => {
|
|
const splitted = acct.split('@', 2);
|
|
return { username: splitted[0], host: splitted[1] || null };
|
|
};
|