mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 13:27:36 +03:00
9 lines
133 B
Go
9 lines
133 B
Go
package utils
|
|
|
|
func TrimText(text string, keep int) string {
|
|
if len(text) > keep {
|
|
return text[0:keep] + "..."
|
|
}
|
|
|
|
return text
|
|
}
|