summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts/get-user-name.ts
blob: d499ea02037ba131d797a74e611b733ff5984833 (plain)
1
2
3
export default function(user: { name?: string | null, username: string }): string {
	return user.name || user.username;
}