8 lines
125 B
XML
8 lines
125 B
XML
function formatAmount(amount) {
|
|
return (amount / 10000).toFixed(2);
|
|
}
|
|
|
|
module.exports = {
|
|
formatAmount: formatAmount,
|
|
};
|