Created
November 9, 2025 08:02
-
-
Save mimshins/52fdecf52b27efb520eb5296f6f17bc6 to your computer and use it in GitHub Desktop.
A boolean indicates whether we are in the correct DOM execution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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