(c4)
| 3539 | } |
| 3540 | var extraURLEncodedPercentEncodeSet = /* @__PURE__ */ new Set([p4("!"), p4("'"), p4("("), p4(")"), p4("~")]); |
| 3541 | function isURLEncodedPercentEncode(c4) { |
| 3542 | return isComponentPercentEncode(c4) || extraURLEncodedPercentEncodeSet.has(c4); |
| 3543 | } |
| 3544 | function utf8PercentEncodeCodePointInternal(codePoint, percentEncodePredicate) { |
| 3545 | const bytes = utf8Encode(codePoint); |
| 3546 | let output = ""; |
nothing calls this directly
no test coverage detected
searching dependent graphs…