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

Function isPathPercentEncode

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

Source from the content-addressed store, hash-verified

3527 }
3528 var extraPathPercentEncodeSet = /* @__PURE__ */ new Set([p4("?"), p4("`"), p4("{"), p4("}"), p4("^")]);
3529 function isPathPercentEncode(c4) {
3530 return isQueryPercentEncode(c4) || extraPathPercentEncodeSet.has(c4);
3531 }
3532 var extraUserinfoPercentEncodeSet = /* @__PURE__ */ new Set([p4("/"), p4(":"), p4(";"), p4("="), p4("@"), p4("["), p4("\\"), p4("]"), p4("|")]);
3533 function isUserinfoPercentEncode(c4) {
3534 return isPathPercentEncode(c4) || extraUserinfoPercentEncodeSet.has(c4);

Callers 1

isUserinfoPercentEncodeFunction · 0.85

Calls 2

isQueryPercentEncodeFunction · 0.85
hasMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…