MCPcopy Create free account
hub / github.com/anus-dev/ANUS / isLetter

Function isLetter

packages/core/src/utils/memoryImportProcessor.ts:146–152  ·  view source on GitHub ↗
(char: string)

Source from the content-addressed store, hash-verified

144}
145
146function isLetter(char: string): boolean {
147 const code = char.charCodeAt(0);
148 return (
149 (code >= 65 && code <= 90) || // A-Z
150 (code >= 97 && code <= 122)
151 ); // a-z
152}
153
154function findCodeRegions(content: string): Array<[number, number]> {
155 const regions: Array<[number, number]> = [];

Callers 1

findImportsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected