forked from NextGraph/nextgraph-rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
417 B
14 lines
417 B
import {version} from '../../../package.json';
|
|
|
|
export function client_details() {
|
|
return window.navigator.userAgent;
|
|
}
|
|
|
|
export function client_details2(obj) {
|
|
obj.browser.appVersion = navigator?.appVersion;
|
|
obj.browser.arch = navigator?.platform;
|
|
obj.browser.vendor = navigator?.vendor;
|
|
obj.browser.ua = window.navigator.userAgent;
|
|
obj.engine.sdk = version;
|
|
return JSON.stringify(obj);
|
|
}
|
|
|