mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 19:14:22 -05:00
fix: remove unnecessary conversion to 32 bit
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
function amountToInteger(n) {
|
||||
return Math.round(n * 100) | 0;
|
||||
return Math.round(n * 100);
|
||||
}
|
||||
|
||||
function integerToAmount(n) {
|
||||
|
||||
Reference in New Issue
Block a user