HotTRDealsBackend/adapters/responses/userProfileStats.adapter.js
2026-01-23 17:28:21 +00:00

12 lines
287 B
JavaScript

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