Skip to content

Commit 8edcbb5

Browse files
committed
exact equal
1 parent dee37b0 commit 8edcbb5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/runtime/nodejs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface IMeta extends IMetaStatic {
3434

3535
const meta: IMetaStatic = {
3636
runtime: "Nodejs",
37-
runtimeVersion: (typeof process != 'undefined') ? process.version : null,
37+
runtimeVersion: (typeof process !== 'undefined') ? process.version : null,
3838
hostname: hostname ? hostname() : null,
3939
};
4040

0 commit comments

Comments
 (0)