Skip to content

Commit

Permalink
make sure we get a boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Jul 14, 2020
1 parent bde8f34 commit 9e80c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/minimal.js
Expand Up @@ -34,7 +34,7 @@ util.isNode = typeof global !== "undefined"
&& global
&& global.process
&& global.process.versions
&& global.process.versions.node;
&& typeof global.process.versions.node === "string";

/**
* Global object reference.
Expand Down

0 comments on commit 9e80c77

Please sign in to comment.