Merge branch 'fix-typo-drive' into 'main'
[ProtonMail-WebClient.git] / packages / utils / percentage.ts
blob62aee030fba15b85d2c4df1d28bb67c8c504988d
1 export default function percentage(entire: number, fraction: number) {
2     /*
3      * Safeguard against division by 0 error as well as
4      * NaN inputs for either "entire" or "fraction".
5      */
6     if (!entire || !fraction) {
7         return 0;
8     }
10     return (fraction / entire) * 100;