Skip to content

Instantly share code, notes, and snippets.

@yoannmoinet
Last active November 4, 2017 19:39
Show Gist options
  • Save yoannmoinet/ec76436a0bb911a5081710890b9ea2a8 to your computer and use it in GitHub Desktop.
Save yoannmoinet/ec76436a0bb911a5081710890b9ea2a8 to your computer and use it in GitHub Desktop.
Check for the existence of a BrowserWindow
const windowExists = (w) => {
if (!w || (w && w.isDestroyed())) {
return false;
}
return true;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment