function mapUserProfileStatsToResponse(stats) { return { totalLikes: stats?.totalLikes ?? 0, totalShares: stats?.totalShares ?? 0, totalComments: stats?.totalComments ?? 0, totalDeals: stats?.totalDeals ?? 0, } } module.exports = { mapUserProfileStatsToResponse, }