3 lines
75 B
JavaScript
Raw Normal View History

2023-02-21 20:52:00 -05:00
export function bytesToMegabytes(bytes) {
return bytes / (1024 * 1024);
}