WebArena-ShopSmart / lib /currency.ts
Jack
Initial release
1067b6f
export const currencyFormatter = (value: number) => {
const formattedPrice = new Intl.NumberFormat("en-US", {
style: "currency",
currency: "USD",
}).format(value);
const [dollars, cents] = formattedPrice.split(".");
if (cents === "00") {
return dollars;
}
return formattedPrice;
};