function formatAmount(amount) { return (amount / 10000).toFixed(2); } module.exports = { formatAmount: formatAmount, };