1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-29 08:39:56 +01:00

8 lines
164 B
TypeScript
Raw Normal View History

export const domainFromAcct = (acct: string): string | null => {
const [_account, server] = acct.split('@')
if (server) {
return server
}
return null
}