mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 14:21:57 +01:00
5 lines
141 B
TypeScript
5 lines
141 B
TypeScript
import Acct from './type';
|
|
|
|
export default (user: Acct) => {
|
|
return user.host == null ? user.username : `${user.username}@${user.host}`;
|
|
};
|