UNPKG

envoc-form

Version:

Envoc form components

9 lines (8 loc) 220 B
export function humanFileSize(size: number) { const i = Math.floor(Math.log(size) / Math.log(1024)); return ( (size / Math.pow(1024, i)).toFixed(2) + ' ' + ['B', 'KB', 'MB', 'GB', 'TB'][i] ); }