mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
15 lines
200 B
Go
15 lines
200 B
Go
package services
|
|
|
|
func truncateRunes(s string, maxRunes int) string {
|
|
if maxRunes < 0 {
|
|
return s
|
|
}
|
|
for i := range s {
|
|
if maxRunes == 0 {
|
|
return s[:i] + "..."
|
|
}
|
|
maxRunes--
|
|
}
|
|
return s
|
|
}
|