One approach would be to check if the 'this' variable is the 'window' variable.
(typeof window !== 'undefined' && this === window)
I would say this is a bit safer than just assuming that because a global variable name is defined that it's the object you want, because 'this' cannot be reassigned.
However, you could assign the 'window' variable name to be equal to 'global' and trick the check.
window = global
this === window //returns True
But that's a much more specific action than simply defining a variable name to exist, but, it still happens. For example; Chrome's new tab page has 'global' defined as 'window' for some reason.
To be extra safe, you can check the type of 'window' after making sure it exists and is 'this', making the full check to be:
typeof window !== 'undefined' &&
this === window &&
window.toString() === '[object DOMWindow]'
This would tell you that 'window' is defined, it is the current scope, and it has the right object name.
This approach does have a few fallbacks though. It has to be made in global scope so that 'this' is not local to the closure you are in. Also, while 'this' is defined in the node console, it is an empty object when you execute a script, so the window check has to be made instead. And, strict mode defines that 'this' in the global scope is undefined, so this cannot work in strict mode.
However, it is good in that it doesn't assume any reserved keywords, and cannot be spoofed, because you cannot alter 'this' as long as it's called in the right place.