File size: 307 Bytes
1067b6f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
};