export function formatCurrency( cents: number, locale = 'en-US', currency = 'USD' ): string { return new Intl.NumberFormat(locale, { style: 'currency', currency, }).format(cents / 100); }