1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-18 00:29:00 +09:00
MisskeyIO/src/misc/acct/render.ts

6 lines
142 B
TypeScript
Raw Normal View History

import Acct from './type';
2018-06-18 09:54:53 +09:00
export default (user: Acct) => {
2018-03-27 16:51:12 +09:00
return user.host === null ? user.username : `${user.username}@${user.host}`;
};