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

Function isFragmentPercentEncode

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

Source from the content-addressed store, hash-verified

3516 }
3517 var extraFragmentPercentEncodeSet = /* @__PURE__ */ new Set([p4(" "), p4('"'), p4("<"), p4(">"), p4("`")]);
3518 function isFragmentPercentEncode(c4) {
3519 return isC0ControlPercentEncode(c4) || extraFragmentPercentEncodeSet.has(c4);
3520 }
3521 var extraQueryPercentEncodeSet = /* @__PURE__ */ new Set([p4(" "), p4('"'), p4("#"), p4("<"), p4(">")]);
3522 function isQueryPercentEncode(c4) {
3523 return isC0ControlPercentEncode(c4) || extraQueryPercentEncodeSet.has(c4);

Callers

nothing calls this directly

Calls 2

isC0ControlPercentEncodeFunction · 0.85
hasMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…