MCPcopy Create free account
hub / github.com/di-sukharev/opencommit / isASCIIAlpha

Function isASCIIAlpha

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

Source from the content-addressed store, hash-verified

3438 return c4 >= 48 && c4 <= 57;
3439 }
3440 function isASCIIAlpha(c4) {
3441 return c4 >= 65 && c4 <= 90 || c4 >= 97 && c4 <= 122;
3442 }
3443 function isASCIIAlphanumeric(c4) {
3444 return isASCIIAlpha(c4) || isASCIIDigit(c4);
3445 }

Callers 1

isASCIIAlphanumericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected