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

Function prependBullets

src/constants/prompts.ts:167–173  ·  view source on GitHub ↗
(items: Array<string | string[]>)

Source from the content-addressed store, hash-verified

165}
166
167export function prependBullets(items: Array<string | string[]>): string[] {
168 return items.flatMap(item =>
169 Array.isArray(item)
170 ? item.map(subitem => ` - ${subitem}`)
171 : [` - ${item}`],
172 )
173}
174
175function getSimpleIntroSection(
176 outputStyleConfig: OutputStyleConfig | null,

Callers 8

getSimpleSandboxSectionFunction · 0.85
getSimplePromptFunction · 0.85
getSimpleSystemSectionFunction · 0.85
getUsingYourToolsSectionFunction · 0.85
computeSimpleEnvInfoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected