From 62589c0a4e1babc5953ea30c7ef80b3867ed0a04 Mon Sep 17 00:00:00 2001 From: Adrian Mejia Date: Sat, 12 Aug 2017 15:24:45 -0400 Subject: [PATCH] solves merge conflict --- src/node.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/node.js b/src/node.js index cb3b2194..fc725ce2 100644 --- a/src/node.js +++ b/src/node.js @@ -55,8 +55,6 @@ exports.inspectOpts = Object.keys(process.env).filter(function (key) { .toLowerCase() .replace(/_([a-z])/g, function (_, k) { return k.toUpperCase() }); - console.log('key', key); - // coerce string value into JS value var val = process.env[key]; if (/^(yes|on|true|enabled)$/i.test(val)) val = true; @@ -120,11 +118,7 @@ function formatArgs(args) { } function getDate() { -<<<<<<< Updated upstream - if ('hideTtyDate' in this.inspectOpts && this.inspectOpts.hideTtyDate) { -======= if ('hideTtyDate' in exports.inspectOpts && exports.inspectOpts.hideTtyDate) { ->>>>>>> Stashed changes return ''; } else { return new Date().toISOString() + ' ';