Skip to content

Commit fb0ab4c

Browse files
Trottrichardlau
authored andcommitted
debugger: removed unused function argument
PR-URL: #38850 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 2ad0719 commit fb0ab4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/inspector/inspect_repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ function createRepl(inspector) {
581581
const lines = watchedExpressions
582582
.map((expr, idx) => {
583583
const prefix = `${leftPad(idx, ' ', lastIndex)}: ${expr} =`;
584-
const value = inspect(values[idx], { colors: true });
584+
const value = inspect(values[idx]);
585585
if (value.indexOf('\n') === -1) {
586586
return `${prefix} ${value}`;
587587
}

0 commit comments

Comments
 (0)