Skip to content

Commit 910009d

Browse files
committed
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 79d487e commit 910009d

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
@@ -639,7 +639,7 @@ function createRepl(inspector) {
639639
ArrayPrototypeMap(watchedExpressions, inspectValue)));
640640
const lines = ArrayPrototypeMap(watchedExpressions, (expr, idx) => {
641641
const prefix = `${leftPad(idx, ' ', lastIndex)}: ${expr} =`;
642-
const value = inspect(values[idx], { colors: true });
642+
const value = inspect(values[idx]);
643643
if (!StringPrototypeIncludes(value, '\n')) {
644644
return `${prefix} ${value}`;
645645
}

0 commit comments

Comments
 (0)