blob: 9903e6f50c29dc4ecf94d37e0dea241dead0e29b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Create a writable property by tracking it with a private variable.
* We cannot make a normal property writeable on `exports` because
* the module system freezes it.
*/
function makeWritableFlag(exports, name) {
let flag = false;
Object.defineProperty(exports, name, {
get: function () { return flag; },
set: function (state) { flag = state; }
});
}
makeWritableFlag(exports, "wantLogging");
makeWritableFlag(exports, "wantVerbose");
// When the testing flag is set, various behaviors may be altered from
// production mode, typically to enable easier testing or enhanced
// debugging.
makeWritableFlag(exports, "testing");
|