(input: string, key: Key)
| 98 | * ``` |
| 99 | */ |
| 100 | export function isGlobalInputSequence(input: string, key: Key): GlobalInputSequence | undefined { |
| 101 | return GLOBAL_INPUT_SEQUENCES.find((seq) => seq.matches(input, key)) |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Check if an input matches a specific global input sequence by ID. |
no outgoing calls
no test coverage detected