From 2cc50530d2d07ab7c9a6fd6bfdc528260fe2438c Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 25 Dec 2017 08:48:33 +0100 Subject: [PATCH] repl: fix coloring of `process.versions` Remove the custom formatter that was added in commit 4fb27d4 ("intl: Add more versions from ICU"). It's not necessary anymore (and may not have been necessary at all) and prevents proper coloring in the REPL. PR-URL: https://github.com/nodejs/node/pull/17861 Fixes: https://github.com/nodejs/node/issues/17086 Reviewed-By: Nikolai Vavilov Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Khaidi Chu Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater --- lib/util.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/util.js b/lib/util.js index 2e0f1616391c59..27a9d983c6cc47 100644 --- a/lib/util.js +++ b/lib/util.js @@ -1029,10 +1029,6 @@ function _exceptionWithHostPort(err, return ex; } -// process.versions needs a custom function as some values are lazy-evaluated. -process.versions[inspect.custom] = - () => exports.format(JSON.parse(JSON.stringify(process.versions))); - function callbackifyOnRejected(reason, cb) { // `!reason` guard inspired by bluebird (Ref: https://goo.gl/t5IS6M). // Because `null` is a special error value in callbacks which means "no error