MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / isWhitespace

Function isWhitespace

packages/queryLanguage/src/tokens.ts:30–32  ·  view source on GitHub ↗
(ch: number)

Source from the content-addressed store, hash-verified

28];
29
30function isWhitespace(ch: number): boolean {
31 return ch === SPACE || ch === TAB || ch === NEWLINE;
32}
33
34function isAlphaNumUnderscore(ch: number): boolean {
35 return (ch >= 65 && ch <= 90) || // A-Z

Callers 5

isOrKeywordFunction · 0.85
skipWhitespaceFunction · 0.85
isRegexQueryGroupingAtFunction · 0.85
hasUnmatchedOpenParenFunction · 0.85
tokens.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected