Here is a npm library which can handle window, document and global object for you: Global.
Then you can safely write:
import window from 'global'
const mySpecialWindowFunction = () => {
return /msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase());
};