MCPcopy
hub / github.com/codeaashu/claude-code / styleBorderLine

Function styleBorderLine

src/ink/render-border.ts:70–80  ·  view source on GitHub ↗
(
  line: string,
  color: Color | undefined,
  dim: boolean | undefined,
)

Source from the content-addressed store, hash-verified

68}
69
70function styleBorderLine(
71 line: string,
72 color: Color | undefined,
73 dim: boolean | undefined,
74): string {
75 let styled = applyColor(line, color)
76 if (dim) {
77 styled = chalk.dim(styled)
78 }
79 return styled
80}
81
82const renderBorder = (
83 x: number,

Callers 1

renderBorderFunction · 0.85

Calls 1

applyColorFunction · 0.85

Tested by

no test coverage detected