mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
423 B
JavaScript
10 lines
423 B
JavaScript
// Taken from StackOverflow
|
|
// http://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript
|
|
export function formatSize(bytes) {
|
|
if (bytes === 0) return '0 Bytes'
|
|
const k = 1000
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k))
|
|
return (bytes / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i]
|
|
}
|