mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 23:48:52 +00:00
* QuerySidePanel component * Adds all osquery table names to ace editor mode * kolide theme for strings * Detect OS from browser * Show utility and specs availability as 'All Platforms' * Show column description as alt text
6 lines
160 B
JavaScript
6 lines
160 B
JavaScript
export default () => {
|
|
const { navigator } = global.window;
|
|
const macOSRegex = /(Mac|iPhone|iPod|iPad)/i;
|
|
|
|
return macOSRegex.test(navigator.platform);
|
|
};
|