mirror of
https://github.com/documenso/documenso.git
synced 2026-07-10 04:55:02 +10:00
4 lines
86 B
TypeScript
4 lines
86 B
TypeScript
export function megabytesToBytes(megabytes: number) {
|
|
return megabytes * 1000000;
|
|
}
|