unpkg/modules/client/utils/formatPercent.js

4 lines
114 B
JavaScript
Raw Normal View History

2019-01-06 00:50:05 +00:00
export default function formatPercent(n, fixed = 1) {
return String((n.toPrecision(2) * 100).toFixed(fixed));
}