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:
parent
403da30ceb
commit
3065dadea3
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue