Files
aitrade/vendor/github.com/dustin/go-humanize/ordinals.go
T
kaedwen 819d7d6453
Build and Push Docker Image / build-and-push (push) Successful in 3m31s
add vendoring
Signed-off-by: kaedwen <kaedwen@heinrich.blue>
2026-07-04 07:20:13 +02:00

26 lines
371 B
Go

package humanize
import "strconv"
// Ordinal gives you the input number in a rank/ordinal format.
//
// Ordinal(3) -> 3rd
func Ordinal(x int) string {
suffix := "th"
switch x % 10 {
case 1:
if x%100 != 11 {
suffix = "st"
}
case 2:
if x%100 != 12 {
suffix = "nd"
}
case 3:
if x%100 != 13 {
suffix = "rd"
}
}
return strconv.Itoa(x) + suffix
}