magnetar/fe_calckey/frontend/sw/src/scripts/get-user-name.ts

7 lines
126 B
TypeScript
Raw Normal View History

2023-07-07 19:22:30 +00:00
export default function (user: {
name?: string | null;
username: string;
}): string {
return user.name || user.username;
}