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

Function isWordStart

src/utils/bash/bashParser.ts:222–224  ·  view source on GitHub ↗
(c: string)

Source from the content-addressed store, hash-verified

220}
221
222function isWordStart(c: string): boolean {
223 return isWordChar(c) || c === '\\'
224}
225
226function isIdentStart(c: string): boolean {
227 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_'

Callers 1

nextTokenFunction · 0.85

Calls 1

isWordCharFunction · 0.85

Tested by

no test coverage detected