mirror of
https://github.com/elk-zone/elk.git
synced 2025-02-16 23:39:47 +03:00
5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
import type { Account } from 'masto'
|
|
|
|
export function getDisplayName(account: Account) {
|
|
return account.displayName || account.username
|
|
}
|