| 1234567891011121314 |
- const formatter = new Intl.NumberFormat("en-US", {
- style: "currency",
- currency: "USD",
- })
- export const formatCurrency = (amount: number | null | undefined) => {
- if (amount === null || amount === undefined) {
- return "-"
- }
- return formatter.format(amount)
- }
- export const parsePrice = (price?: string) => (price ? parseFloat(price) * 1_000_000 : undefined)
|