Convert a floating-point ratio to a percentage string.
Usage:
import { floatToPercent } from "mazey";const ret1 = floatToPercent(0.2);const ret2 = floatToPercent(0.2, 2);console.log(ret1);console.log(ret2); Copy
import { floatToPercent } from "mazey";const ret1 = floatToPercent(0.2);const ret2 = floatToPercent(0.2, 2);console.log(ret1);console.log(ret2);
Output:
20% 20.00% Copy
20% 20.00%
Floating-point ratio to convert.
Number of decimal places in the percentage.
The percentage string.
Convert a floating-point ratio to a percentage string.
Usage:
Output: