MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / isASCIIAlphanumeric

Function isASCIIAlphanumeric

out/cli.cjs:3443–3445  ·  view source on GitHub ↗
(c4)

Source from the content-addressed store, hash-verified

3441 return c4 >= 65 && c4 <= 90 || c4 >= 97 && c4 <= 122;
3442 }
3443 function isASCIIAlphanumeric(c4) {
3444 return isASCIIAlpha(c4) || isASCIIDigit(c4);
3445 }
3446 function isASCIIHex(c4) {
3447 return isASCIIDigit(c4) || c4 >= 65 && c4 <= 70 || c4 >= 97 && c4 <= 102;
3448 }

Callers

nothing calls this directly

Calls 2

isASCIIAlphaFunction · 0.85
isASCIIDigitFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…