Skip to content

Instantly share code, notes, and snippets.

@FeMaffezzolli
Created July 16, 2020 20:20
Show Gist options
  • Save FeMaffezzolli/424f3cf6da0fa6893ded68b4542da304 to your computer and use it in GitHub Desktop.
Save FeMaffezzolli/424f3cf6da0fa6893ded68b4542da304 to your computer and use it in GitHub Desktop.
Format currency value
const formatValue = (value: number): string =>
Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL',
}).format(value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment