utils.ts
1 import type { RatingCountsList } from './types'; 2 3 // eslint-disable-next-line import/prefer-default-export 4 export const calculatePercentages = ( 5 ratingValues: RatingCountsList, 6 totalCount: number, 7 ): RatingCountsList => 8 ratingValues?.map((value: number) => 9 Math.round((value / totalCount) * 100), 10 ) || [];