7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
export function currency(value: number) {
|
|
return new Intl.NumberFormat('pt-BR', {
|
|
style: 'currency',
|
|
currency: 'BRL'
|
|
}).format(value)
|
|
}
|