Skip to content

Commit 6709997

Browse files
fix lint
1 parent a3b5086 commit 6709997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/requestTracing/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ function getNodeVersion(): string | undefined {
213213
// Make it compatible with non-Node.js runtime
214214
if (typeof process !== "undefined" && typeof process?.versions === "object") {
215215
const version = process.versions.node;
216-
return version ? version.split('.')[0] : undefined;
216+
return version ? version.split(".")[0] : undefined;
217217
} else {
218218
return undefined;
219219
}

0 commit comments

Comments
 (0)