UNPKG

@accounter/client

Version:
13 lines (11 loc) 293 B
import { Currency, type FinancialAmount } from '../gql/graphql.js'; export function formatFinancialAmount( rawAmount: number, currency: Currency = Currency.Ils, ): FinancialAmount { return { raw: rawAmount, formatted: `${currency} ${rawAmount.toFixed(2)}`, currency, }; }