Skip to content

Commit 9d24b6d

Browse files
Trottfoxxyz
authored andcommitted
debugger: removed unused function argument
PR-URL: nodejs#38850 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 0f26bb3 commit 9d24b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/inspector/inspect_repl.js

+1-1
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)