mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-23 07:39:55 +00:00
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
export function isAppleDevice() {
|
|
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)
|
|
}
|
|
|
|
export function getPlatformSpecialKey() {
|
|
return isAppleDevice() ? "⌘" : "Ctrl"
|
|
}
|
|
|
|
export function getPlatformAlternateKey() {
|
|
return isAppleDevice() ? "⌥" : "Alt"
|
|
}
|