MCPcopy Index your code
hub / github.com/nodejs/node / stringPercentDecode

Function stringPercentDecode

deps/undici/undici.js:4415–4418  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

4413 }
4414 __name(URLSerializer, "URLSerializer");
4415 function stringPercentDecode(input) {
4416 const bytes = encoder.encode(input);
4417 return percentDecode(bytes);
4418 }
4419 __name(stringPercentDecode, "stringPercentDecode");
4420 function isHexCharByte(byte) {
4421 return byte >= 48 && byte <= 57 || byte >= 65 && byte <= 70 || byte >= 97 && byte <= 102;

Callers 1

dataURLProcessorFunction · 0.70

Calls 2

encodeMethod · 0.80
percentDecodeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…