1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-24 03:28:43 +09:00
misskey/src/misc/acct/render.ts

6 lines
141 B
TypeScript
Raw Normal View History

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