mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-08-29 04:32:06 -04:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
|
|
export const getPercentage = (value: number, total: number) => {
|
||
|
|
const percentage = (value * 100) / total;
|
||
|
|
if (!isNaN(percentage)) {
|
||
|
|
return percentage;
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
};
|