mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +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);
|
||
|
};
|