4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-12 18:25:50 +00:00
qortal-ui/qortal-ui-plugins/plugins/utils/roundToNearestDecimal.js

4 lines
109 B
JavaScript
Raw Normal View History

2023-01-20 16:30:01 -05:00
export function roundToNearestDecimal(num) {
const mb = num / 1000000;
return Math.round(mb * 10) / 10;
}