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 40aa07b commit 8e7cc02Copy full SHA for 8e7cc02
src/jsutils/instanceOf.js
@@ -11,7 +11,8 @@ declare function instanceOf(
11
12
// See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production
13
// See: https://webpack.js.org/guides/production/
14
-export default process.env.NODE_ENV === 'production'
+export default typeof process !== 'undefined' &&
15
+process.env.NODE_ENV === 'production'
16
? // eslint-disable-next-line no-shadow
17
function instanceOf(value: mixed, constructor: mixed) {
18
return value instanceof constructor;
0 commit comments