signal-desktop/ts/util/logPadSize.ts
automated-signal c93fcd321d
Show ready-to-download documents in media gallery
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2025-09-25 05:41:27 +10:00

9 lines
236 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export function logPadSize(size: number): number {
return Math.max(
541,
Math.floor(1.05 ** Math.ceil(Math.log(size) / Math.log(1.05)))
);
}