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

Function splitNumericParams

src/ink/parse-keypress.ts:177–180  ·  view source on GitHub ↗
(params: string)

Source from the content-addressed store, hash-verified

175}
176
177function splitNumericParams(params: string): number[] {
178 if (!params) return []
179 return params.split(';').map(p => parseInt(p, 10))
180}
181
182export type KeyParseState = {
183 mode: 'NORMAL' | 'IN_PASTE'

Callers 1

parseTerminalResponseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected