(c4)
| 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); |
no outgoing calls
no test coverage detected
searching dependent graphs…