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 5aa83f9 commit 190467fCopy full SHA for 190467f
modules/constants/index.js
@@ -26,7 +26,8 @@ let IS_RC: boolean
26
export const isRc = () => IS_RC
27
28
// checks if the build should show debugging tools
29
-export const isDevMode = () => !IS_PRODUCTION || (IS_ALPHA || IS_BETA || IS_PRE || IS_RC)
+export const isDevMode = () =>
30
+ !IS_PRODUCTION || (IS_ALPHA || IS_BETA || IS_PRE || IS_RC)
31
32
export const setVersionInfo = (versionStr: string) => {
33
let [version, buildNum] = versionStr.split('+')
0 commit comments