20 lines
649 B
JavaScript
20 lines
649 B
JavaScript
// Path: Loader/scripts/hints.js
|
|
|
|
export const collectClientHints = () => {
|
|
const navigatorConnection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
|
|
|
|
return {
|
|
capturedAt: new Date().toISOString(),
|
|
language: navigator.language,
|
|
languages: Array.isArray(navigator.languages) ? navigator.languages : [],
|
|
hardwareConcurrency: navigator.hardwareConcurrency ?? null,
|
|
deviceMemory: navigator.deviceMemory ?? null,
|
|
networkType: navigatorConnection?.effectiveType ?? null,
|
|
saveData: navigatorConnection?.saveData ?? null,
|
|
viewport: {
|
|
width: window.innerWidth,
|
|
height: window.innerHeight,
|
|
},
|
|
};
|
|
};
|