isBrowser.js 210 B

1234
  1. /**
  2. * Detects whether window and document objects are available in current environment.
  3. */
  4. export default typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;