function userInfoDto(user, avatar = null) { return { username: user.username, avatar: avatar || null }; } module.exports = { userInfoDto };