Files
2025-12-25 12:03:13 -03:00

7 lines
148 B
TypeScript

export function currency(value: number) {
return new Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL'
}).format(value)
}