5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
|
const byteToMB = (bytes: number) =>
|
||
|
Math.round((bytes / 1024 / 1024) * 100) / 100
|
||
|
|
||
|
export default byteToMB
|