Skip to content

Instantly share code, notes, and snippets.

@bearkfear
Created August 26, 2021 02:45
Show Gist options
  • Save bearkfear/63dd02f413fd0eb6aceabfe23f52666b to your computer and use it in GitHub Desktop.
Save bearkfear/63dd02f413fd0eb6aceabfe23f52666b to your computer and use it in GitHub Desktop.
Converte valor monetário para moeda corrente local (currency formatter)
export default function currencyFormat(value: string | number): string {
return Number(value).toLocaleString("pt-BR", {
style: "currency",
currency: "BRL",
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment