mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-23 23:23:51 +08:00
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
import osName from "os-name";
|
|
export function getUserAgent() {
|
|
try {
|
|
return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`;
|
|
}
|
|
catch (error) {
|
|
if (/wmic os get Caption/.test(error.message)) {
|
|
return "Windows <version undetectable>";
|
|
}
|
|
return "<environment undetectable>";
|
|
}
|
|
}
|