Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/astercloud/aster
/ truncate
Function
truncate
examples/session-sqlite/main.go:192–197 ·
view source on GitHub ↗
(s string, maxLen int)
Source
from the content-addressed store, hash-verified
190
}
191
192
func
truncate(s string, maxLen int) string {
193
if
len(s) <= maxLen {
194
return
s
195
}
196
return
s[:maxLen-3] +
"..."
197
}
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected