We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee477b commit 8dd1f70Copy full SHA for 8dd1f70
lib/internal/inspector/_inspect.js
@@ -261,10 +261,10 @@ class NodeInspector {
261
262
print(text, appendNewline = false) {
263
this.clearLine();
264
- this.stdout.write(appendNewline ? `${text}\n` : text);
+ this.stdout.write(appendNewline ? `${text}\n` : text);
265
}
266
267
- #stdioBuffers = {stdout: '', stderr: ''};
+ #stdioBuffers = { stdout: '', stderr: '' };
268
childPrint(text, which) {
269
const lines = (this.#stdioBuffers[which] + text)
270
.split(/\r\n|\r|\n/g);
@@ -283,7 +283,7 @@ class NodeInspector {
283
this.repl.displayPrompt(true);
284
285
286
-
+
287
if (textToPrint.endsWith('Waiting for the debugger to disconnect...\n')) {
288
this.killChild();
289
0 commit comments