(params: string)
| 179 | } |
| 180 | |
| 181 | function splitNumericParams(params: string): number[] { |
| 182 | if (!params) return [] |
| 183 | return params.split(';').map(p => parseInt(p, 10)) |
| 184 | } |
| 185 | |
| 186 | export type KeyParseState = { |
| 187 | mode: 'NORMAL' | 'IN_PASTE' |
no outgoing calls
no test coverage detected