summaryrefslogtreecommitdiff
path: root/src/acct/render.ts
blob: 9afb03d88b4cc46031929f7846c55b6868e36cbf (plain)
1
2
3
export default user => {
	return user.host === null ? user.username : `${user.username}@${user.host}`;
};