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

Function get

lib/internal/bootstrap/node.js:97–99  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

95 ObjectDefineProperty(process, '_exiting', {
96 __proto__: null,
97 get() {
98 return fields[kExiting] === 1;
99 },
100 set(value) {
101 fields[kExiting] = value ? 1 : 0;
102 },

Callers

nothing calls this directly

Calls 4

createFinalizationFunction · 0.85
getOptionValueFunction · 0.85
getSourceMapsSupportFunction · 0.85
requireFunction · 0.50

Tested by

no test coverage detected