(cmd: string)
| 214 | |
| 215 | /** Resolve an alias to its canonical command name. Non-aliases pass through unchanged. */ |
| 216 | export function canonicalizeCommand(cmd: string): string { |
| 217 | return COMMAND_ALIASES[cmd] ?? cmd; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Commands added in specific versions — enables future "this command was added in vX" |
no outgoing calls
no test coverage detected