mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 01:44:26 -05:00
fix(ext/console): print circular ref indicator in cyan (#13684)
This commit is contained in:
parent
7780e512e3
commit
8891c19c57
1 changed files with 1 additions and 1 deletions
|
@ -1189,7 +1189,7 @@
|
||||||
if (circular !== undefined) {
|
if (circular !== undefined) {
|
||||||
const index = MapPrototypeGet(circular, value);
|
const index = MapPrototypeGet(circular, value);
|
||||||
if (index !== undefined) {
|
if (index !== undefined) {
|
||||||
refIndex = `<ref *${index}> `;
|
refIndex = cyan(`<ref *${index}> `);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue