mirror of
https://github.com/zrepl/zrepl.git
synced 2025-02-18 11:21:03 +01:00
19 lines
317 B
Go
19 lines
317 B
Go
|
package viewmodel
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func ByteCountBinary(b int64) string {
|
||
|
const unit = 1024
|
||
|
if b < unit {
|
||
|
return fmt.Sprintf("%d B", b)
|
||
|
}
|
||
|
div, exp := int64(unit), 0
|
||
|
for n := b / unit; n >= unit; n /= unit {
|
||
|
div *= unit
|
||
|
exp++
|
||
|
}
|
||
|
return fmt.Sprintf("%.1f %ciB", float64(b)/float64(div), "KMGTPE"[exp])
|
||
|
}
|