Skip to content

Instantly share code, notes, and snippets.

@4drian-sanchez
Last active September 19, 2025 22:04
Show Gist options
  • Select an option

  • Save 4drian-sanchez/71948b62b3e8ff9234035f8b6dd4050e to your computer and use it in GitHub Desktop.

Select an option

Save 4drian-sanchez/71948b62b3e8ff9234035f8b6dd4050e to your computer and use it in GitHub Desktop.
Formateador de número entero a dólar
export function formatCurrency(amount: number): string {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2,
maximumFractionDigits: 2
}).format(amount);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment