MCPcopy Index your code
hub / github.com/codeaashu/claude-code / processOutputText

Function processOutputText

src/utils/notebook.ts:34–39  ·  view source on GitHub ↗
(text: string | string[] | undefined)

Source from the content-addressed store, hash-verified

32}
33
34function processOutputText(text: string | string[] | undefined): string {
35 if (!text) return ''
36 const rawText = Array.isArray(text) ? text.join('') : text
37 const { truncatedContent } = formatOutput(rawText)
38 return truncatedContent
39}
40
41function extractImage(
42 data: Record<string, unknown>,

Callers 1

processOutputFunction · 0.85

Calls 1

formatOutputFunction · 0.85

Tested by

no test coverage detected