mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-13 02:35:51 +00:00
4 lines
109 B
JavaScript
4 lines
109 B
JavaScript
|
export function roundToNearestDecimal(num) {
|
||
|
const mb = num / 1000000;
|
||
|
return Math.round(mb * 10) / 10;
|
||
|
}
|