Skip to content

Instantly share code, notes, and snippets.

@kluu1
Created March 24, 2020 01:08
Show Gist options
  • Select an option

  • Save kluu1/4fe2e730cea2aee2a775171485f8d2e5 to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/4fe2e730cea2aee2a775171485f8d2e5 to your computer and use it in GitHub Desktop.
export const formatCurrency = value => {
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
})
return formatter.format(value)
}
export const convertToPercentage = value => {
return (value * 100).toFixed(2) + '%'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment