aboutsummaryrefslogtreecommitdiff
path: root/internal/progress/humanize.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/progress/humanize.go')
-rw-r--r--internal/progress/humanize.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/internal/progress/humanize.go b/internal/progress/humanize.go
deleted file mode 100644
index f13845f7..00000000
--- a/internal/progress/humanize.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package progress
-
-import "fmt"
-
-func humanizeBytes(n uint64) string {
- const unit = 1024
- if n < unit {
- return fmt.Sprintf("%d B", n)
- }
-
- value := float64(n)
-
- units := []string{"KiB", "MiB", "GiB", "TiB", "PiB"}
- for i := range units {
- value /= unit
- if value < unit || i == len(units)-1 {
- return fmt.Sprintf("%.2f %s", value, units[i])
- }
- }
-
- return fmt.Sprintf("%d B", n)
-}