MCPcopy
hub / github.com/codeaashu/claude-code / isCSIIntermediate

Function isCSIIntermediate

src/ink/termio/csi.ts:29–33  ·  view source on GitHub ↗
(byte: number)

Source from the content-addressed store, hash-verified

27
28/** Check if a byte is a CSI intermediate byte */
29export function isCSIIntermediate(byte: number): boolean {
30 return (
31 byte >= CSI_RANGE.INTERMEDIATE_START && byte <= CSI_RANGE.INTERMEDIATE_END
32 )
33}
34
35/** Check if a byte is a CSI final byte (@ through ~) */
36export function isCSIFinal(byte: number): boolean {

Callers 1

tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected