summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/get-user-name.ts
blob: 3ae80d7fc391b9ea47a5b6dce9a87129af39f1b9 (plain)
1
2
3
4
5
6
7
8
/*
 * SPDX-FileCopyrightText: syuilo and other misskey contributors
 * 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;
}