Created
March 24, 2020 01:08
-
-
Save kluu1/4fe2e730cea2aee2a775171485f8d2e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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