portainer/app/react/constants.ts

12 lines
216 B
TypeScript
Raw Normal View History

export const BROWSER_OS_PLATFORM = getOs();
function getOs() {
const { userAgent } = navigator;
if (userAgent.includes('Windows')) {
return 'win';
}
return userAgent.includes('Mac') ? 'mac' : 'lin';
}