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 dee37b0 commit 8edcbb5Copy full SHA for 8edcbb5
1 file changed
src/runtime/nodejs/index.ts
@@ -34,7 +34,7 @@ export interface IMeta extends IMetaStatic {
34
35
const meta: IMetaStatic = {
36
runtime: "Nodejs",
37
- runtimeVersion: (typeof process != 'undefined') ? process.version : null,
+ runtimeVersion: (typeof process !== 'undefined') ? process.version : null,
38
hostname: hostname ? hostname() : null,
39
};
40
0 commit comments