0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

fix(ext/console): print circular ref indicator in cyan (#13684)

This commit is contained in:
Leo Kettmeir 2022-02-16 16:21:59 +01:00 committed by GitHub
parent 7780e512e3
commit 8891c19c57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1189,7 +1189,7 @@
if (circular !== undefined) {
const index = MapPrototypeGet(circular, value);
if (index !== undefined) {
refIndex = `<ref *${index}> `;
refIndex = cyan(`<ref *${index}> `);
}
}