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

Function truncate

src/ui/components/StatusBar.tsx:49–51  ·  view source on GitHub ↗
(text: string, max: number)

Source from the content-addressed store, hash-verified

47}
48
49function truncate(text: string, max: number): string {
50 return text.length > max ? text.slice(0, max - 1) + "…" : text;
51}
52
53/**
54 * Picks the usage window that currently constrains the agent and formats it as

Callers 1

StatusBarFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected