1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-06-19 06:11:21 +00:00
2023-02-21 20:52:00 -05:00

3 lines
75 B
JavaScript

export function bytesToMegabytes(bytes) {
return bytes / (1024 * 1024);
}