2022-04-29 02:44:38 +00:00
|
|
|
function amountToInteger(n) {
|
2022-07-28 23:10:49 +00:00
|
|
|
return Math.round(n * 100);
|
2022-04-29 02:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function integerToAmount(n) {
|
|
|
|
return parseFloat((n / 100).toFixed(2));
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = { amountToInteger, integerToAmount };
|