mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-12 18:25:50 +00:00
3 lines
75 B
JavaScript
3 lines
75 B
JavaScript
|
export function bytesToMegabytes(bytes) {
|
||
|
return bytes / (1024 * 1024);
|
||
|
}
|