(input: string)
| 8 | * isSlashCommand('help') // => false |
| 9 | */ |
| 10 | export function isSlashCommand(input: string): boolean { |
| 11 | return input.trim().startsWith('/') |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Parse the command name from user input. |
no outgoing calls
no test coverage detected