Skip to content

Instantly share code, notes, and snippets.

@andreferi3
Created August 13, 2020 08:03
Show Gist options
  • Select an option

  • Save andreferi3/83b56754ea728a38d09e2876c78f85e7 to your computer and use it in GitHub Desktop.

Select an option

Save andreferi3/83b56754ea728a38d09e2876c78f85e7 to your computer and use it in GitHub Desktop.
function parseNumFormat(amount) {
if(amount) {
return amount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, '.');
} else {
return 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment