Files
2023-11-15 13:13:31 +11:00

4 lines
86 B
TypeScript

export function megabytesToBytes(megabytes: number) {
return megabytes * 1000000;
}