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

Function isHexCharByte

lib/internal/data_url.js:194–197  ·  view source on GitHub ↗

* @param {number} byte * @returns {boolean}

(byte)

Source from the content-addressed store, hash-verified

192 * @returns {boolean}
193 */
194function isHexCharByte(byte) {
195 // 0-9 A-F a-f
196 return (byte >= 0x30 && byte <= 0x39) || (byte >= 0x41 && byte <= 0x46) || (byte >= 0x61 && byte <= 0x66);
197}
198
199/**
200 * @param {number} byte

Callers 1

percentDecodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…