MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isCSIFinal

Function isCSIFinal

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

Source from the content-addressed store, hash-verified

34
35/** Check if a byte is a CSI final byte (@ through ~) */
36export function isCSIFinal(byte: number): boolean {
37 return byte >= CSI_RANGE.FINAL_START && byte <= CSI_RANGE.FINAL_END
38}
39
40/**
41 * Generate a CSI sequence: ESC [ p1;p2;...;pN final

Callers 1

tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected