about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
blob: c7ae6b7cd4cb9cad832f106efbd14e2a3ae0abae (plain) (blame)
1
2
3
4
5
6
export function getIsReducedMotionEnabled(): boolean {
  if (typeof window === 'undefined') {
    return false
  }
  return window.matchMedia('(prefers-reduced-motion: reduce)').matches
}