gilo/internal/gilo/fn.go
Timothy J Warren fe1c54317e
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit
Fix CI build?
2021-04-12 12:52:20 -04:00

30 lines
360 B
Go

// Helper functions
package gilo
import "strings"
// Truncate a string to a length
func Truncate(s string, length int) string {
if length < 1 {
return ""
}
if len(s) < length {
return s
}
var buf strings.Builder
count := 0
for _, char := range s {
if count == length {
break
}
buf.WriteRune(char)
count++
}
return buf.String()
}