We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa1373f commit 86cf014Copy full SHA for 86cf014
lib/repl.js
@@ -70,7 +70,9 @@ const {
70
ERR_SCRIPT_EXECUTION_INTERRUPTED
71
} = require('internal/errors').codes;
72
const { sendInspectorCommand } = require('internal/util/inspector');
73
-const { experimentalREPLAwait } = process.binding('config');
+const experimentalREPLAwait = internalBinding('options').getOptions(
74
+ '--experimental-repl-await'
75
+);
76
const { isRecoverableError } = require('internal/repl/recoverable');
77
const {
78
getOwnNonIndexProperties,
0 commit comments