Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
style: Remove console.error() statement
Browse files Browse the repository at this point in the history
This commits removes a commented-out `console.error()` statement.
  • Loading branch information
aqrln committed Mar 9, 2017
1 parent 2cfe74b commit 032b045
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/internal/inspect_repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ class ScopeSnapshot {
constructor(scope, properties) {
Object.assign(this, scope);
this.properties = new Map(properties.map((prop) => {
// console.error(prop);
const value = new RemoteObject(prop.value);
return [prop.name, value];
}));
Expand Down

0 comments on commit 032b045

Please sign in to comment.