12 lines
287 B
JavaScript
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,
|
|
} |