mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-28 22:26:44 -06:00
3 lines
106 B
TypeScript
3 lines
106 B
TypeScript
export default user => {
|
|
return user.host === null ? user.username : `${user.username}@${user.host}`;
|
|
};
|