mirror of https://github.com/portainer/portainer
12 lines
216 B
TypeScript
12 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';
|
||
|
}
|