()
| 273 | ObjectDefineProperty(constants, 'defaultCipherList', { |
| 274 | __proto__: null, |
| 275 | get() { |
| 276 | const value = getOptionValue('--tls-cipher-list'); |
| 277 | ObjectDefineProperty(this, 'defaultCipherList', { |
| 278 | __proto__: null, |
| 279 | writable: true, |
| 280 | configurable: true, |
| 281 | enumerable: true, |
| 282 | value, |
| 283 | }); |
| 284 | return value; |
| 285 | }, |
| 286 | set(val) { |
| 287 | ObjectDefineProperty(this, 'defaultCipherList', { |
| 288 | __proto__: null, |
nothing calls this directly
no test coverage detected