We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c410b21 commit 53cd6e2Copy full SHA for 53cd6e2
1 file changed
bundler/modules/globals.cjs
@@ -37,6 +37,9 @@ if (process.env.EXODUS_TEST_IS_BROWSER || process.env.EXODUS_TEST_IS_BAREBONE) {
37
if (!Object.hasOwn(console, type)) continue
38
console[type] = wrap(console[type].bind(console))
39
}
40
+
41
+ // Poor polyfill for console.table that at least prints the results instead of loosing them
42
+ console.table = (...args) => console.log(JSON.stringify(args, undefined, 2))
43
44
45
if (!console.time || !console.timeEnd) {
0 commit comments