Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
142
function
isWhitespace(char: string): boolean {
143
return
char ===
' '
|| char ===
'\t'
|| char ===
'\n'
|| char ===
'\r'
;
144
}
145
146
function
isLetter(char: string): boolean {
147
const
code = char.charCodeAt(0);
Callers
1
findImports
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected