signal-desktop/ts/util/formatFileSize.ts
Scott Nonnenberg 2741fbb5d2
Show attachment download progress, new stop button to cancel
Co-authored-by: Jamie Kyle <jamie@signal.org>
2024-12-10 08:54:18 +10:00

7 lines
233 B
TypeScript

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import filesize from 'filesize';
export function formatFileSize(size: number, decimals = 0): string {
return filesize(size, { round: decimals });
}