mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
14 lines
355 B
JavaScript
14 lines
355 B
JavaScript
export function getUserAgent() {
|
|
if (typeof navigator === "object" && "userAgent" in navigator) {
|
|
return navigator.userAgent;
|
|
}
|
|
|
|
if (typeof process === "object" && process.version !== undefined) {
|
|
return `Node.js/${process.version.substr(1)} (${process.platform}; ${
|
|
process.arch
|
|
})`;
|
|
}
|
|
|
|
return "<environment undetectable>";
|
|
}
|