mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-03-15 12:46:07 +01:00
start structs
This commit is contained in:
parent
924236532c
commit
b0b92dae0f
8 changed files with 331 additions and 30 deletions
|
|
@ -146,7 +146,7 @@ function printBinaryString(buf: Uint8Array, f: FmtCtx) {
|
|||
|
||||
buf.forEach((byte) => {
|
||||
const noEscape =
|
||||
(byte > 0x30 && byte <= 0x5a) || (byte > 0x61 && byte <= 0x71);
|
||||
(byte > 0x30 && byte <= 0x5a) || (byte >= 0x61 && byte <= 0x7a);
|
||||
if (noEscape) {
|
||||
parts.push(`${String.fromCharCode(byte)}`);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue