Skip to content

Commit

Permalink
lib: remove unused function argument (nodejs#96)
Browse files Browse the repository at this point in the history
The `{colors: true}` removed here is ignored by the function it is being
sent to.
  • Loading branch information
Trott committed Apr 25, 2021
1 parent a7e7087 commit 93507f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/inspector/inspect_repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ function createRepl(inspector) {
const lines = watchedExpressions
.map((expr, idx) => {
const prefix = `${leftPad(idx, ' ', lastIndex)}: ${expr} =`;
const value = inspect(values[idx], { colors: true });
const value = inspect(values[idx]);
if (value.indexOf('\n') === -1) {
return `${prefix} ${value}`;
}
Expand Down

0 comments on commit 93507f1

Please sign in to comment.