1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/composables/masto.ts
2022-11-21 16:07:55 +01:00

6 lines
140 B
TypeScript

import type { Account } from 'masto'
export function getDisplayName(account: Account) {
return account.displayName || account.username
}