mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:43:09 +02:00
4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
|
export default function(user: { name?: string | null, username: string }): string {
|
||
|
return user.name || user.username;
|
||
|
}
|