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

Function hasStructuralKeyword

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

Source from the content-addressed store, hash-verified

456 * still fire through the language-agnostic code-token path.
457 */
458export function hasStructuralKeyword(prompt: string): boolean {
459 return (
460 !!prompt &&
461 (STRUCTURAL_WORDS_RE.test(prompt) || STRUCTURAL_STEMS_RE.test(prompt) || STRUCTURAL_UNSEGMENTED.test(prompt))
462 );
463}
464
465/**
466 * 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