mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 09:03:15 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
export function getOS() {
|
|
const userAgent = window.navigator.userAgent;
|
|
if (userAgent.indexOf('Mac') !== -1) return 'mac';
|
|
if (userAgent.indexOf('Win') !== -1) return 'win';
|
|
return 'linux';
|
|
}
|
|
|
|
export function isTouchDevice() {
|
|
return 'ontouchstart' in window || navigator.maxTouchPoints > 0;
|
|
}
|