(commands: Command[])
| 684 | * the CCR init message arrives. |
| 685 | */ |
| 686 | export function filterCommandsForRemoteMode(commands: Command[]): Command[] { |
| 687 | return commands.filter(cmd => REMOTE_SAFE_COMMANDS.has(cmd)) |
| 688 | } |
| 689 | |
| 690 | export function findCommand( |
| 691 | commandName: string, |