vkashti / utils / format.ts
format.ts
Raw
export function formatCurrency(value: number): string {
  // Format as BGN currency
  return new Intl.NumberFormat('bg-BG', {
    style: 'currency',
    currency: 'BGN',
    minimumFractionDigits: 0,
    maximumFractionDigits: 2
  }).format(value);
}