Simplify ShortDur code and tests

This commit is contained in:
Deluan 2024-02-02 21:07:27 -05:00
parent 61257f89d2
commit 79a4d8f6ad
2 changed files with 19 additions and 33 deletions

View file

@ -19,11 +19,6 @@ func ShortDur(d time.Duration) string {
default:
s = d.String()
}
if strings.HasSuffix(s, "m0s") {
s = s[:len(s)-2]
}
if strings.HasSuffix(s, "h0m") {
s = s[:len(s)-2]
}
return s
s = strings.TrimSuffix(s, "0s")
return strings.TrimSuffix(s, "0m")
}