Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/github/awesome-copilot
/ alnum
Function
alnum
extensions/java-modernization-studio/scan.mjs:362–362 ·
view source on GitHub ↗
(c)
Source
from the content-addressed store, hash-verified
360
const
s = sig.toLowerCase();
361
if
(!s)
return
false;
362
const
alnum = (c) => (c >=
"a"
&& c <=
"z"
) || (c >=
"0"
&& c <=
"9"
);
363
if
(!alnum(s[0]))
return
text.includes(s);
364
let
from = 0;
365
for
(;;) {
Callers
1
signatureMatches
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected