(byte: number)
| 22 | |
| 23 | /** Check if a byte is a CSI parameter byte */ |
| 24 | export 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 */ |
| 29 | export function isCSIIntermediate(byte: number): boolean { |