Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. const floatToPercent = (value) => {
  2. if (isNaN(value)) return value
  3. return `${Number(value * 100).toFixed(2)}%`
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement