MCPcopy Create free account
hub / github.com/codeaashu/claude-code / isC0

Function isC0

src/ink/termio/ansi.ts:65–67  ·  view source on GitHub ↗
(byte: number)

Source from the content-addressed store, hash-verified

63
64/** Check if a byte is a C0 control character */
65export 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 ~)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected