TypeScript code snippet – How to know if window exists in nodejs?
if(typeof window !== 'undefined') { console.log("this should print only if window object actually exists") }
if(typeof window !== 'undefined') { console.log("this should print only if window object actually exists") }