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 2c42f74 commit 6102523Copy full SHA for 6102523
src/jsutils/instanceOf.ts
@@ -9,7 +9,7 @@ import { inspect } from './inspect.js';
9
export const instanceOf: (value: unknown, constructor: Constructor) => boolean =
10
/* c8 ignore next 6 */
11
// FIXME: https://github.com/graphql/graphql-js/issues/2317
12
- globalThis.process?.env.NODE_ENV === 'production'
+ globalThis.process != null && globalThis.process.env.NODE_ENV === 'production'
13
? function instanceOf(value: unknown, constructor: Constructor): boolean {
14
return value instanceof constructor;
15
}
0 commit comments