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

Function isWhitespace

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

Source from the content-addressed store, hash-verified

140}
141
142function isWhitespace(char: string): boolean {
143 return char === ' ' || char === '\t' || char === '\n' || char === '\r';
144}
145
146function isLetter(char: string): boolean {
147 const code = char.charCodeAt(0);

Callers 1

findImportsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected