aboutsummaryrefslogtreecommitdiffstats
path: root/common/size.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/size.go')
-rw-r--r--common/size.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/common/size.go b/common/size.go
new file mode 100644
index 000000000..80a17279b
--- /dev/null
+++ b/common/size.go
@@ -0,0 +1,15 @@
+package common
+
+import "fmt"
+
+type StorageSize float64
+
+func (self StorageSize) String() string {
+ if self > 1000000 {
+ return fmt.Sprintf("%.2f mB", self/1000000)
+ } else if self > 1000 {
+ return fmt.Sprintf("%.2f kB", self/1000)
+ } else {
+ return fmt.Sprintf("%.2f B", self)
+ }
+}