* Set the summary. Used when listed as subcommand of parent. * * @param {string} [str] * @return {(string|Command)}
(str)
| 2246 | * @return {(string|Command)} |
| 2247 | */ |
| 2248 | summary(str) { |
| 2249 | if (str === undefined) return this._summary; |
| 2250 | this._summary = str; |
| 2251 | return this; |
| 2252 | } |
| 2253 | |
| 2254 | /** |
| 2255 | * Set an alias for the command. |
no outgoing calls
no test coverage detected