jormungandr-bite/src/misc/acct/render.ts

9 lines
174 B
TypeScript
Raw Normal View History

2018-07-24 09:51:30 -06:00
type UserLike = {
host: string;
username: string;
};
2018-06-17 18:54:53 -06:00
2018-07-24 09:51:30 -06:00
export default (user: UserLike) => {
2018-03-27 01:51:12 -06:00
return user.host === null ? user.username : `${user.username}@${user.host}`;
};