mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2024-12-23 15:37:59 +01:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
export const domainFromAcct = (acct: string): string | null => {
|
|
const [_account, server] = acct.split('@')
|
|
if (server) {
|
|
return server
|
|
}
|
|
return null
|
|
}
|