mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
|
|
export default () => {
|
||
|
|
const { navigator } = global.window;
|
||
|
|
const macOSRegex = /(Mac|iPhone|iPod|iPad)/i;
|
||
|
|
|
||
|
|
return macOSRegex.test(navigator.platform);
|
||
|
|
};
|