(query: string)
| 27 | * @returns True if the query looks like an '/' command, false otherwise. |
| 28 | */ |
| 29 | export const isSlashCommand = (query: string): boolean => query.startsWith('/'); |
| 30 | |
| 31 | // Copies a string snippet to the clipboard for different platforms |
| 32 | export const copyToClipboard = async (text: string): Promise<void> => { |
no outgoing calls
no test coverage detected