platformutils.js 271 B

1234567891011
  1. export function isAppleDevice() {
  2. return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)
  3. }
  4. export function getPlatformSpecialKey() {
  5. return isAppleDevice() ? "⌘" : "Ctrl"
  6. }
  7. export function getPlatformAlternateKey() {
  8. return isAppleDevice() ? "⌥" : "Alt"
  9. }