fix: use Math.round in place of truncating digits

This commit is contained in:
Tom French 2022-07-29 00:03:33 +01:00 committed by James Long
parent 696a094303
commit bb9c9927db
2 changed files with 2 additions and 2 deletions

View file

@ -199,5 +199,5 @@ export function makeValue(value, cond) {
}
export function getApproxNumberThreshold(number) {
return (Math.abs(number) * 0.075) | 0;
return Math.round(Math.abs(number) * 0.075);
}

View file

@ -221,7 +221,7 @@ export function extractScheduleConds(conditions) {
export function getScheduledAmount(amount) {
if (amount && typeof amount !== 'number') {
return ((amount.num1 + amount.num2) / 2) | 0;
return Math.round((amount.num1 + amount.num2) / 2);
}
return amount;
}