-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
window is not defined #21
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using this module through node.js, some of the checks for window do fail. The reason is that checking the existence of a global window object cannot be done via
if (window)
, because if window does not exist, it will throw an error. Instead, you should check for window existence viaif (typeof window === 'object')
, which will not throw.I'm happy to create a PR if you like.
The text was updated successfully, but these errors were encountered: