1 2 3 4 5
const formatCurrency = (value: number) => { return Math.round(value).toLocaleString('id-ID'); }; export default formatCurrency;