MCPcopy Create free account
hub / github.com/AnukarOP/claude-code-leaked / isWordStart

Function isWordStart

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

Source from the content-addressed store, hash-verified

222}
223
224function isWordStart(c: string): boolean {
225 return isWordChar(c) || c === '\\'
226}
227
228function isIdentStart(c: string): boolean {
229 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