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

Function isC0ControlPercentEncode

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

Source from the content-addressed store, hash-verified

3512 return percentDecodeBytes(bytes);
3513 }
3514 function isC0ControlPercentEncode(c4) {
3515 return c4 <= 31 || c4 > 126;
3516 }
3517 var extraFragmentPercentEncodeSet = /* @__PURE__ */ new Set([p4(" "), p4('"'), p4("<"), p4(">"), p4("`")]);
3518 function isFragmentPercentEncode(c4) {
3519 return isC0ControlPercentEncode(c4) || extraFragmentPercentEncodeSet.has(c4);

Callers 2

isFragmentPercentEncodeFunction · 0.85
isQueryPercentEncodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…