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 79d487e commit 910009dCopy full SHA for 910009d
lib/internal/inspector/inspect_repl.js
@@ -639,7 +639,7 @@ function createRepl(inspector) {
639
ArrayPrototypeMap(watchedExpressions, inspectValue)));
640
const lines = ArrayPrototypeMap(watchedExpressions, (expr, idx) => {
641
const prefix = `${leftPad(idx, ' ', lastIndex)}: ${expr} =`;
642
- const value = inspect(values[idx], { colors: true });
+ const value = inspect(values[idx]);
643
if (!StringPrototypeIncludes(value, '\n')) {
644
return `${prefix} ${value}`;
645
}
0 commit comments