(obj: unknown)
| 502 | } |
| 503 | |
| 504 | export function isObject(obj: unknown): obj is Record<string, unknown> { |
| 505 | return typeof obj === "object" && !Array.isArray(obj) && obj !== null; |
| 506 | } |
| 507 | |
| 508 | export function prefersReducedMotion(): boolean { |
| 509 | return matchMedia?.("(prefers-reduced-motion)")?.matches; |
no outgoing calls
no test coverage detected