We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5340a00 commit 69a55d7Copy full SHA for 69a55d7
packages/polyfills/console.js
@@ -585,6 +585,7 @@ if (global.nativeLoggingHook) {
585
}
586
587
global.console = {
588
+ timeStamp: consoleTimeStampPolyfill,
589
...(originalConsole ?? {}),
590
error: getNativeLogFunction(LOG_LEVELS.error),
591
info: getNativeLogFunction(LOG_LEVELS.info),
@@ -597,7 +598,6 @@ if (global.nativeLoggingHook) {
597
598
groupEnd: consoleGroupEndPolyfill,
599
groupCollapsed: consoleGroupCollapsedPolyfill,
600
assert: consoleAssertPolyfill,
- timeStamp: consoleTimeStampPolyfill,
601
};
602
603
// TODO(T206796580): This was copy-pasted from ExceptionsManager.js
0 commit comments