Skip to content

Commit

Permalink
exact equal
Browse files Browse the repository at this point in the history
  • Loading branch information
olafbuitelaar committed Aug 6, 2023
1 parent dee37b0 commit 8edcbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/nodejs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface IMeta extends IMetaStatic {

const meta: IMetaStatic = {
runtime: "Nodejs",
runtimeVersion: (typeof process != 'undefined') ? process.version : null,
runtimeVersion: (typeof process !== 'undefined') ? process.version : null,
hostname: hostname ? hostname() : null,
};

Expand Down

0 comments on commit 8edcbb5

Please sign in to comment.