(command)
| 246 | } |
| 247 | |
| 248 | function getCall(command) { |
| 249 | const parts = command.name.split('-'); |
| 250 | return `${parts.pop()} ${parts.join('-')}`; |
| 251 | } |
| 252 | |
| 253 | function generateBody(command, validators) { |
| 254 | const { positionals, flags } = getCommandData(command.flags); |
no outgoing calls
no test coverage detected