mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 10:33:02 -05:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
function amountToInteger(n) {
|
|
return Math.round(n * 100);
|
|
}
|
|
|
|
function integerToAmount(n) {
|
|
return parseFloat((n / 100).toFixed(2));
|
|
}
|
|
|
|
module.exports = { amountToInteger, integerToAmount };
|