hoppscotch/packages/hoppscotch-app/helpers/platformutils.js
2021-09-10 00:28:28 +05:30

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