Nextjs-boilerplate/src/feature/common/feature-helpers.ts
2024-11-15 19:44:26 +03:00

6 lines
143 B
TypeScript

export const formatCurrency = (amount: number) =>
(amount / 100).toLocaleString("en-US", {
style: "currency",
currency: "USD",
});