3 lines
77 B
JavaScript
3 lines
77 B
JavaScript
export const formatPrice = (value) => {
|
|
return Number(value).toFixed(2)
|
|
} |