unpkg/client/utils/formatPercent.js

4 lines
118 B
JavaScript
Raw Normal View History

2017-11-25 21:25:01 +00:00
const formatPercent = (n, fixed = 1) => String((n.toPrecision(2) * 100).toFixed(fixed))
export default formatPercent