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 440597e commit 2bd1755Copy full SHA for 2bd1755
packages/common/src/utils/debug.ts
@@ -1,5 +1,8 @@
1
import { getGlobal } from './global';
2
3
+// eslint-disable-next-line
4
+declare var __DEV__: boolean | undefined;
5
+
6
const shouldShowDebugger = () => {
7
if (typeof __DEV__ !== 'undefined' && __DEV__) {
8
return true;
0 commit comments