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

Function isCSIParam

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

Source from the content-addressed store, hash-verified

22
23/** Check if a byte is a CSI parameter byte */
24export function isCSIParam(byte: number): boolean {
25 return byte >= CSI_RANGE.PARAM_START && byte <= CSI_RANGE.PARAM_END
26}
27
28/** Check if a byte is a CSI intermediate byte */
29export function isCSIIntermediate(byte: number): boolean {

Callers 1

tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected