Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/pyfa-org/Pyfa
/ isStringCjk
Function
isStringCjk
utils/cjk.py:19–27 ·
view source on GitHub ↗
(string)
Source
from the content-addressed store, hash-verified
17
18
19
def
isStringCjk(string):
20
checked = set()
21
for
char in string:
22
if
char in checked:
23
continue
24
checked.add(char)
25
if
isCharCjk(char):
26
return
True
27
return
False
Callers
2
processSearches
Method · 0.90
OnScheduleSearch
Method · 0.90
Calls
1
isCharCjk
Function · 0.85
Tested by
no test coverage detected