summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/utils/commandUtils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/utils/commandUtils.ts')
-rw-r--r--packages/cli/src/ui/utils/commandUtils.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/cli/src/ui/utils/commandUtils.ts b/packages/cli/src/ui/utils/commandUtils.ts
index b17b264d..aadd035e 100644
--- a/packages/cli/src/ui/utils/commandUtils.ts
+++ b/packages/cli/src/ui/utils/commandUtils.ts
@@ -24,20 +24,3 @@ export const isAtCommand = (query: string): boolean =>
* @returns True if the query looks like an '/' command, false otherwise.
*/
export const isSlashCommand = (query: string): boolean => query.startsWith('/');
-
-const control_symbols: string[] = ['/', '@', '!', '?', '$'];
-/**
- * Returns the first word of query with optional leading slash, ampersand, bang.
- *
- * @param query The input query string.
- * @returns optional leading symbol and first word of query
- */
-export const getCommandFromQuery = (
- query: string,
-): [string | undefined, string] => {
- const word = query.trim().split(/\s/, 1)[0];
- if (word.length > 0 && control_symbols.includes(word[0])) {
- return [word[0], word.slice(1)];
- }
- return [undefined, word];
-};