+2
-2
src/env/common.ts
+2
-2
src/env/common.ts
···
21
21
export const IS_TESTFLIGHT = ENV === 'testflight'
22
22
23
23
/**
24
-
* Indicates whether the app is __DEV__
24
+
* Indicates whether the app is `__DEV__`
25
25
*/
26
26
export const IS_DEV = __DEV__
27
27
28
28
/**
29
-
* Indicates whether the app is __DEV__ or TestFlight
29
+
* Indicates whether the app is `__DEV__` or TestFlight
30
30
*/
31
31
export const IS_INTERNAL = IS_DEV || IS_TESTFLIGHT
32
32