summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-02-16 16:21:59 +0100
committerGitHub <noreply@github.com>2022-02-16 16:21:59 +0100
commit8891c19c57773a5ce3d58dbec20a8d37d780ff63 (patch)
treef98b73d95a8130c2b27934f37224163ef3c036f0
parent7780e512e3713053f6cb79d5c4d2a5a59e560f94 (diff)
fix(ext/console): print circular ref indicator in cyan (#13684)
-rw-r--r--ext/console/02_console.js2
1 files changed, 1 insertions, 1 deletions
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 = `<ref *${index}> `;
+ refIndex = cyan(`<ref *${index}> `);
}
}