mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-03-23 23:33:14 +00:00
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
|
|
const MB = 1024 ** 2;
|
||
|
|
const SIZE_CAP = 1; // 1 MB
|
||
|
|
|
||
|
|
export const isSizeValid = (payload: Uint8Array): boolean => {
|
||
|
|
if (payload.length / MB > SIZE_CAP) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
return true;
|
||
|
|
};
|