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 ac779fe commit 50ed3e0Copy full SHA for 50ed3e0
lib/internal/inspector/inspect_repl.js
@@ -581,7 +581,7 @@ function createRepl(inspector) {
581
const lines = watchedExpressions
582
.map((expr, idx) => {
583
const prefix = `${leftPad(idx, ' ', lastIndex)}: ${expr} =`;
584
- const value = inspect(values[idx], { colors: true });
+ const value = inspect(values[idx]);
585
if (value.indexOf('\n') === -1) {
586
return `${prefix} ${value}`;
587
}
0 commit comments