We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 546c13f commit a8f5b4aCopy full SHA for a8f5b4a
src/jsutils/instanceOf.ts
@@ -1,6 +1,11 @@
1
import { inspect } from './inspect';
2
3
-const isProduction = typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'production';
+/* c8 ignore next 4 */
4
+// eslint-disable-next-line no-undef
5
+const isProduction =
6
+ typeof process !== 'undefined' &&
7
+ process.env &&
8
+ process.env.NODE_ENV === 'production';
9
10
/**
11
* A replacement for instanceof which includes an error warning when multi-realm
0 commit comments