MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / hasStructuralKeyword

Function hasStructuralKeyword

src/directory.ts:517–522  ·  view source on GitHub ↗
(prompt: string)

Source from the content-addressed store, hash-verified

515 * still fire through the language-agnostic code-token path.
516 */
517export function hasStructuralKeyword(prompt: string): boolean {
518 return (
519 !!prompt &&
520 (STRUCTURAL_WORDS_RE.test(prompt) || STRUCTURAL_STEMS_RE.test(prompt) || STRUCTURAL_UNSEGMENTED.test(prompt))
521 );
522}
523
524/**
525 * Identifier-shaped tokens in `prompt` — camelCase / PascalCase-with-inner-cap,

Callers 3

mainFunction · 0.90
isStructuralPromptFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected