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