1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-03 03:42:09 -06:00
paricafe/packages/frontend/src/scripts/get-user-name.ts
2024-02-13 15:59:27 +00:00

8 lines
261 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export default function(user: { name?: string | null, username: string }): string {
return user.name === '' ? user.username : user.name ?? user.username;
}