Skip to content

Instantly share code, notes, and snippets.

@mimshins
Created November 9, 2025 08:02
Show Gist options
  • Select an option

  • Save mimshins/52fdecf52b27efb520eb5296f6f17bc6 to your computer and use it in GitHub Desktop.

Select an option

Save mimshins/52fdecf52b27efb520eb5296f6f17bc6 to your computer and use it in GitHub Desktop.
A boolean indicates whether we are in the correct DOM execution
const canUseDOM: boolean = !!(
typeof window !== 'undefined' &&
typeof window.document !== 'undefined' &&
typeof window.document.createElement !== 'undefined'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment