Created
September 17, 2022 19:04
-
-
Save d3vlopes/2c2ba8a36178ad292b34dbbcb840c1e7 to your computer and use it in GitHub Desktop.
FormatPrice
This file contains 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 formatPrice = (value: number) => { | |
return value.toLocaleString('pt-BR', { minimumFractionDigits: 2 }) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment