mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
23ffa5be62
* 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
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);
|
|
};
|