Created
January 4, 2026 23:57
-
-
Save fabiobrasileiroo/99834a824a6fb7152f9d90d525c35e0f 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 function formatCurrency(number: number | undefined): string { | |
| if(!number) { | |
| return "R$ 0,00" | |
| } | |
| return new Intl.NumberFormat("pt-BR", { style: "currency", currency: "BRL" }).format( | |
| number, | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment