3 lines
75 B
JavaScript
3 lines
75 B
JavaScript
|
export function bytesToMegabytes(bytes) {
|
||
|
return bytes / (1024 * 1024);
|
||
|
}
|