actual/packages/api/utils.js
2022-04-28 22:44:38 -04:00

10 lines
198 B
JavaScript

function amountToInteger(n) {
return Math.round(n * 100) | 0;
}
function integerToAmount(n) {
return parseFloat((n / 100).toFixed(2));
}
module.exports = { amountToInteger, integerToAmount };