in src/requestTracing/utils.ts [174:181]
function getEnvironmentVariable(name: string) {
// Make it compatible with non-Node.js runtime
if (typeof process !== "undefined" && typeof process?.env === "object") {
return process.env[name];
} else {
return undefined;
}
}