(input: string, key: Key, id: string)
| 117 | * ``` |
| 118 | */ |
| 119 | export function matchesGlobalSequence(input: string, key: Key, id: string): boolean { |
| 120 | const seq = GLOBAL_INPUT_SEQUENCES.find((s) => s.id === id) |
| 121 | return seq ? seq.matches(input, key) : false |
| 122 | } |
no outgoing calls
no test coverage detected