summaryrefslogtreecommitdiff
path: root/common/files/bytesize.go
diff options
context:
space:
mode:
authorKeuin <[email protected]>2023-07-30 19:04:12 +0800
committerKeuin <[email protected]>2023-07-30 19:04:12 +0800
commit3fad4189646cca5d6db99ccfe79be695ef765d03 (patch)
tree6ab1c57a7a954dfd08afba9d2c4ab582382e0eb0 /common/files/bytesize.go
parentd60bdefcabbc7fc0e0bbb690045222896f688f3f (diff)
Refactor: extract pretty duration to a function. Create `pretty` package for creating human friendly stringsv0.5.1
Diffstat (limited to 'common/files/bytesize.go')
-rw-r--r--common/files/bytesize.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/common/files/bytesize.go b/common/files/bytesize.go
deleted file mode 100644
index 95f857a..0000000
--- a/common/files/bytesize.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package files
-
-import "fmt"
-
-func PrettyBytes(b uint64) string {
- if b < 1000 {
- return fmt.Sprintf("%d Byte", b)
- }
- if b < 1000_000 {
- return fmt.Sprintf("%.2f KiB", float64(b)/1024)
- }
- if b < 1000_000_000 {
- return fmt.Sprintf("%.2f MiB", float64(b)/1024/1024)
- }
- if b < 1000_000_000_000 {
- return fmt.Sprintf("%.2f GiB", float64(b)/1024/1024/1024)
- }
- return fmt.Sprintf("%.2f TiB", float64(b)/1024/1024/1024/1024)
-}