MCPcopy Create free account
hub / github.com/MatterAIOrg/OrbCode / truncate

Function truncate

src/config/links.ts:148–150  ·  view source on GitHub ↗
(text: string, max: number)

Source from the content-addressed store, hash-verified

146}
147
148function truncate(text: string, max: number): string {
149 return text.length <= max ? text : text.slice(0, max) + "\n… (truncated)"
150}
151
152/**
153 * Render the linked-repos block for the agent's environment details. Returns ""

Callers 1

renderLinkedReposSectionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected