From 032b045d4d73622c77b7ebcc26781c6ad98200b3 Mon Sep 17 00:00:00 2001 From: Alexey Orlenko Date: Fri, 10 Mar 2017 01:42:06 +0200 Subject: [PATCH] style: Remove console.error() statement This commits removes a commented-out `console.error()` statement. --- lib/internal/inspect_repl.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/internal/inspect_repl.js b/lib/internal/inspect_repl.js index e246b70..c93d792 100644 --- a/lib/internal/inspect_repl.js +++ b/lib/internal/inspect_repl.js @@ -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]; }));