MCPcopy Create free account
hub / github.com/cronitorio/cronitor-cli / truncateString

Function truncateString

cmd/root.go:329–335  ·  view source on GitHub ↗
(s string, length int)

Source from the content-addressed store, hash-verified

327}
328
329func truncateString(s string, length int) string {
330 if len(s) <= length {
331 return s
332 }
333
334 return s[:length]
335}
336
337func printSuccessText(message string, indent bool) {
338 if isAutoDiscover || isSilent {

Callers 2

sendPingFunction · 0.85
createDefaultNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected