MCPcopy Index your code
hub / github.com/nodejs/node / get

Function get

lib/crypto.js:275–285  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

273ObjectDefineProperty(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,

Callers

nothing calls this directly

Calls 3

getOptionValueFunction · 0.85
lazyWebCryptoFunction · 0.85
deprecateFunction · 0.70

Tested by

no test coverage detected