* Return option name, in a camelcase format that can be used * as an object attribute key. * * @return {string}
()
| 215 | */ |
| 216 | |
| 217 | attributeName() { |
| 218 | if (this.negate) { |
| 219 | return camelcase(this.name().replace(/^no-/, '')); |
| 220 | } |
| 221 | return camelcase(this.name()); |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Set the help group heading. |
no test coverage detected