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