2021-07-30 02:13:06 +00:00
|
|
|
export function isAppleDevice() {
|
|
|
|
|
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 02:43:30 +00:00
|
|
|
export function getPlatformSpecialKey() {
|
2021-07-30 02:13:06 +00:00
|
|
|
return isAppleDevice() ? "⌘" : "Ctrl"
|
2020-02-28 02:43:30 +00:00
|
|
|
}
|
2021-07-26 16:09:39 +00:00
|
|
|
|
|
|
|
|
export function getPlatformAlternateKey() {
|
2021-07-30 02:13:06 +00:00
|
|
|
return isAppleDevice() ? "⌥" : "Alt"
|
2021-07-26 16:09:39 +00:00
|
|
|
}
|