mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
export const BROWSER_OS_PLATFORM = getOs();
|
|
|
|
function getOs() {
|
|
const { userAgent } = navigator;
|
|
|
|
if (userAgent.includes('Windows')) {
|
|
return 'win';
|
|
}
|
|
|
|
return userAgent.includes('Mac') ? 'mac' : 'lin';
|
|
}
|