( rootName: string, ancestors: string[], command: Command, )
| 199 | } |
| 200 | |
| 201 | function getCommandPath( |
| 202 | rootName: string, |
| 203 | ancestors: string[], |
| 204 | command: Command, |
| 205 | ): string { |
| 206 | return [rootName, ...ancestors, command.name()].filter(Boolean).join(" "); |
| 207 | } |
| 208 | |
| 209 | function isHiddenCommand(command: Command): boolean { |
| 210 | return Boolean((command as CommandWithInternals)._hidden); |
no outgoing calls
no test coverage detected
searching dependent graphs…