Files
hoppscotch/helpers/platformutils.js
2021-07-29 22:13:06 -04:00

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"
}