(command: string)
| 17 | type FilesystemCommand = (typeof ACCEPT_EDITS_ALLOWED_COMMANDS)[number] |
| 18 | |
| 19 | function isFilesystemCommand(command: string): command is FilesystemCommand { |
| 20 | return ACCEPT_EDITS_ALLOWED_COMMANDS.includes(command as FilesystemCommand) |
| 21 | } |
| 22 | |
| 23 | function validateCommandForMode( |
| 24 | cmd: string, |
no outgoing calls
no test coverage detected