We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ffd58 commit f1000e0Copy full SHA for f1000e0
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