UNPKG

@accounter/client

Version:
9 lines (7 loc) 278 B
import type { Currency } from '@/gql/graphql.js'; import { getCurrencyFormatter } from '@/helpers/index.js'; export const formatCurrency = (amount: number, currency: Currency) => { return getCurrencyFormatter(currency, { minimumFractionDigits: 0, }).format(amount); };