* Get or set the name of the command. * * @param {string} [str] * @return {(string|Command)}
(str)
| 2343 | */ |
| 2344 | |
| 2345 | name(str) { |
| 2346 | if (str === undefined) return this._name; |
| 2347 | this._name = str; |
| 2348 | return this; |
| 2349 | } |
| 2350 | |
| 2351 | /** |
| 2352 | * Set/get the help group heading for this subcommand in parent command's help. |
no outgoing calls
no test coverage detected