Skip to content

Commit f1000e0

Browse files
Trottdanielleadams
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 36ffd58 commit f1000e0

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
constlines=ArrayPrototypeMap(watchedExpressions,(expr,idx)=>{
641641
constprefix=`${leftPad(idx,' ',lastIndex)}: ${expr} =`;
642-
constvalue=inspect(values[idx],{colors: true});
642+
constvalue=inspect(values[idx]);
643643
if(!StringPrototypeIncludes(value,'\n')){
644644
return`${prefix}${value}`;
645645
}

0 commit comments

Comments
(0)