Spaces:
Sleeping
Sleeping
File size: 577 Bytes
d34aa41 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import { type ClassValue, clsx } from 'clsx';
import { format } from 'date-fns';
import { tr } from 'date-fns/locale';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function formatDate(date: Date | string, pattern = 'dd.MM.yyyy') {
return format(new Date(date), pattern, { locale: tr });
}
export function formatCurrency(amount: number, currency = 'TRY') {
return new Intl.NumberFormat('tr-TR', {
style: 'currency',
currency,
maximumFractionDigits: 0,
}).format(amount);
}
|