1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(ext/console): apply coloring for console.table (#26280)

Fixes #26159
This commit is contained in:
Leo Kettmeir 2024-10-15 14:36:45 -07:00 committed by GitHub
parent 403da30ceb
commit 3065dadea3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3256,7 +3256,7 @@ class Console {
const stringifyValue = (value) => const stringifyValue = (value) =>
inspectValueWithQuotes(value, { inspectValueWithQuotes(value, {
...getDefaultInspectOptions(), ...getConsoleInspectOptions(noColorStdout()),
depth: 1, depth: 1,
compact: true, compact: true,
}); });