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