dumb/utils/description.go

10 lines
133 B
Go
Raw Permalink Normal View History

2024-06-09 21:29:17 +01:00
package utils
func TrimText(text string, keep int) string {
if len(text) > keep {
return text[0:keep] + "..."
}
return text
}