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

Function isASCIIHex

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

Source from the content-addressed store, hash-verified

3444 return isASCIIAlpha(c4) || isASCIIDigit(c4);
3445 }
3446 function isASCIIHex(c4) {
3447 return isASCIIDigit(c4) || c4 >= 65 && c4 <= 70 || c4 >= 97 && c4 <= 102;
3448 }
3449 module2.exports = {
3450 isASCIIDigit,
3451 isASCIIAlpha,

Callers 1

percentDecodeBytesFunction · 0.85

Calls 1

isASCIIDigitFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…