Repository URL to install this package:
|
Version:
0.14.1 ▾
|
function percentageConversion(currentValue: number, totalValue: number): string {
const percentage = currentValue * 100 / totalValue
return percentage + '%'
}
export { percentageConversion }