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

Function hexByteToNumber

deps/undici/undici.js:4424–4429  ·  view source on GitHub ↗
(byte)

Source from the content-addressed store, hash-verified

4422 }
4423 __name(isHexCharByte, "isHexCharByte");
4424 function hexByteToNumber(byte) {
4425 return (
4426 // 0-9
4427 byte >= 48 && byte <= 57 ? byte - 48 : (byte & 223) - 55
4428 );
4429 }
4430 __name(hexByteToNumber, "hexByteToNumber");
4431 function percentDecode(input) {
4432 const length = input.length;

Callers 1

percentDecodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected