(subcommandName)
| 144 | * @returns {string} - The full subcommand name, or the original if not an alias |
| 145 | */ |
| 146 | export function resolveSubcommandAlias(subcommandName) { |
| 147 | const normalized = subcommandName.toLowerCase(); |
| 148 | return subcommandAliases[normalized] || subcommandName; |
| 149 | } |
no outgoing calls
no test coverage detected