diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-10-15 14:36:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 21:36:45 +0000 |
commit | 3065dadea3792539f050346c534afc0a7821c2b6 (patch) | |
tree | 98eaf4b3640040790494dcc292fbe060b9b5b94b /ext/console | |
parent | 403da30cebe7caba11ba96a76a3534eebf6c8deb (diff) |
fix(ext/console): apply coloring for console.table (#26280)
Fixes #26159
Diffstat (limited to 'ext/console')
-rw-r--r-- | ext/console/01_console.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/console/01_console.js b/ext/console/01_console.js index a977a2719..3c07cf64a 100644 --- a/ext/console/01_console.js +++ b/ext/console/01_console.js @@ -3256,7 +3256,7 @@ class Console { const stringifyValue = (value) => inspectValueWithQuotes(value, { - ...getDefaultInspectOptions(), + ...getConsoleInspectOptions(noColorStdout()), depth: 1, compact: true, }); |