1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-21 21:56:48 +01:00
elk/composables/masto.ts

6 lines
140 B
TypeScript
Raw Normal View History

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