Revert "Format large money amounts with 'k' and 'm'"

This reverts commit b7d39eaafd.
This commit is contained in:
Austin Chen 2022-03-25 15:54:15 -07:00
parent b7d39eaafd
commit 419a3106e8

View File

@ -7,22 +7,10 @@ const formatter = new Intl.NumberFormat('en-US', {
minimumFractionDigits: 0,
})
// E.g. 1234 => "M$ 1,234"; 23456 => "M$ 23k"
export function formatMoney(amount: number) {
let newAmount = Math.round(amount) === 0 ? 0 : amount // handle -0 case
let suffix = ''
if (newAmount > 10 * 1000) {
suffix = 'k'
newAmount /= 1000
} else if (newAmount > 10 * 1000 * 1000) {
suffix = 'm'
newAmount /= 1000 * 1000
}
const newAmount = Math.round(amount) === 0 ? 0 : amount // handle -0 case
return (
ENV_CONFIG.moneyMoniker +
' ' +
formatter.format(newAmount).replace('$', '') +
suffix
ENV_CONFIG.moneyMoniker + ' ' + formatter.format(newAmount).replace('$', '')
)
}