mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 12:25:31 +08:00
4 lines
91 B
JavaScript
4 lines
91 B
JavaScript
|
export function isMacOS() {
|
||
|
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
|
||
|
}
|