20 lines
603 B
TypeScript
20 lines
603 B
TypeScript
const suffixes = ['bytes', 'KB', 'MB', 'GB', 'TB']
|
|
|
|
export const getReadableFileSize = (
|
|
fileSize: number,
|
|
asText = true
|
|
): string | Record<string, string> => {
|
|
const i = Math.floor(Math.log(fileSize) / Math.log(1024))
|
|
if (!fileSize) {
|
|
return asText ? '0 bytes' : { size: '0', suffix: 'bytes' }
|
|
}
|
|
const size = (fileSize / Math.pow(1024, i)).toFixed(1)
|
|
const suffix = suffixes[i]
|
|
return asText ? `${size}${suffix}` : { size, suffix }
|
|
}
|
|
|
|
export const getFileSizeInMB = (fileSize: number): number => {
|
|
const value = fileSize / 1048576
|
|
return (!fileSize && 0) || +value.toFixed(2)
|
|
}
|