mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-27 18:06:23 -07:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
type UserLike = {
|
|
host: string;
|
|
username: string;
|
|
};
|
|
|
|
export default (user: UserLike) => {
|
|
return user.host === null ? user.username : `${user.username}@${user.host}`;
|
|
};
|