UNPKG

@modern-js-reduck/react

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

4 lines (3 loc) 297 B
import { useEffect, useLayoutEffect } from "react"; export const canUseDOM = Boolean(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined"); export const useIsomorphicLayoutEffect = canUseDOM ? useLayoutEffect : useEffect;