mirror of
https://github.com/documenso/documenso
synced 2026-05-04 22:08:18 +00:00
3 lines
86 B
TypeScript
3 lines
86 B
TypeScript
export function megabytesToBytes(megabytes: number) {
|
|
return megabytes * 1000000;
|
|
}
|