unpkg/modules/client/utils/formatPercent.js

4 lines
114 B
JavaScript

export default function formatPercent(n, fixed = 1) {
return String((n.toPrecision(2) * 100).toFixed(fixed));
}