(byte)
| 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; |