(input: string)
| 198 | * Checks if input is a command (starts with slash) |
| 199 | */ |
| 200 | export function isCommandInput(input: string): boolean { |
| 201 | return input.startsWith('/') |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Checks if a command input has arguments |
no outgoing calls
no test coverage detected