(byte: number)
| 63 | |
| 64 | /** Check if a byte is a C0 control character */ |
| 65 | export function isC0(byte: number): boolean { |
| 66 | return byte < 0x20 || byte === 0x7f |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Check if a byte is an ESC sequence final byte (0-9, :, ;, <, =, >, ?, @ through ~) |
nothing calls this directly
no outgoing calls
no test coverage detected