Files
quantulr 5bbe958729 deploy
2023-08-31 16:24:37 +08:00

8 lines
125 B
XML

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