UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

10 lines (7 loc) 314 B
import { windowMatchMedia } from './chunk-BPJKMILL.mjs'; // src/isPrefersReducedMotion.ts function isPrefersReducedMotion() { const mediaQuery = windowMatchMedia()?.("(prefers-reduced-motion: reduce)"); return typeof window !== "undefined" ? mediaQuery?.matches : false; } export { isPrefersReducedMotion };