(commandName)
| 134 | * @returns {string} - The full command name, or the original if not an alias |
| 135 | */ |
| 136 | export function resolveCommandAlias(commandName) { |
| 137 | const normalized = commandName.toLowerCase(); |
| 138 | return commandAliases[normalized] || commandName; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Resolve a subcommand alias to its full subcommand name |
no outgoing calls
no test coverage detected