24 lines
504 B
Go
24 lines
504 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"git.milar.in/milarin/gmath"
|
||
|
)
|
||
|
|
||
|
func FormatBytes[T gmath.Integer](bytes T) string {
|
||
|
value := float64(bytes)
|
||
|
|
||
|
if value >= 1000000000000 {
|
||
|
return fmt.Sprintf("%.02fT", value/1000000000000)
|
||
|
} else if value >= 1000000000 {
|
||
|
return fmt.Sprintf("%.02fG", value/1000000000)
|
||
|
} else if value >= 1000000 {
|
||
|
return fmt.Sprintf("%.02fM", value/1000000)
|
||
|
} else if value >= 1000 {
|
||
|
return fmt.Sprintf("%.02fK", value/1000)
|
||
|
} else {
|
||
|
return fmt.Sprintf("%.02fB", value)
|
||
|
}
|
||
|
}
|