10 lines
359 B
JavaScript
10 lines
359 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>";
|
||
|
}
|