(c4)
| 3523 | return isC0ControlPercentEncode(c4) || extraQueryPercentEncodeSet.has(c4); |
| 3524 | } |
| 3525 | function isSpecialQueryPercentEncode(c4) { |
| 3526 | return isQueryPercentEncode(c4) || c4 === p4("'"); |
| 3527 | } |
| 3528 | var extraPathPercentEncodeSet = /* @__PURE__ */ new Set([p4("?"), p4("`"), p4("{"), p4("}"), p4("^")]); |
| 3529 | function isPathPercentEncode(c4) { |
| 3530 | return isQueryPercentEncode(c4) || extraPathPercentEncodeSet.has(c4); |
nothing calls this directly
no test coverage detected
searching dependent graphs…