Files
hoppscotch/packages/hoppscotch-common/src/helpers/platformutils.ts
2022-12-02 03:05:35 -05:00

12 lines
271 B
TypeScript

export function isAppleDevice() {
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)
}
export function getPlatformSpecialKey() {
return isAppleDevice() ? "⌘" : "Ctrl"
}
export function getPlatformAlternateKey() {
return isAppleDevice() ? "⌥" : "Alt"
}