mirror of
https://github.com/kokonect-link/cherrypick
synced 2025-01-21 01:04:29 +09: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;
|
||
|
}
|