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