()
| 2 | const TEST_PROD_LOCALLY = FORCE_PROD; |
| 3 | |
| 4 | export function isProd() { |
| 5 | if (TEST_PROD_LOCALLY) return true; |
| 6 | return process.env.NODE_ENV === 'production'; |
| 7 | } |
| 8 | |
| 9 | export function isLocal() { |
| 10 | return process.env.NODE_ENV !== 'production'; |
no outgoing calls
no test coverage detected