Skip to content

Instantly share code, notes, and snippets.

@fabiobrasileiroo
Created January 4, 2026 23:57
Show Gist options
  • Select an option

  • Save fabiobrasileiroo/99834a824a6fb7152f9d90d525c35e0f to your computer and use it in GitHub Desktop.

Select an option

Save fabiobrasileiroo/99834a824a6fb7152f9d90d525c35e0f to your computer and use it in GitHub Desktop.
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