From 8891c19c57773a5ce3d58dbec20a8d37d780ff63 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Wed, 16 Feb 2022 16:21:59 +0100 Subject: fix(ext/console): print circular ref indicator in cyan (#13684) --- ext/console/02_console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/console/02_console.js b/ext/console/02_console.js index 8102707b5..4663ded73 100644 --- a/ext/console/02_console.js +++ b/ext/console/02_console.js @@ -1189,7 +1189,7 @@ if (circular !== undefined) { const index = MapPrototypeGet(circular, value); if (index !== undefined) { - refIndex = ` `; + refIndex = cyan(` `); } } -- cgit v1.2.3