Skip to content

Instantly share code, notes, and snippets.

@Herteby
Created December 15, 2017 15:01
Show Gist options
  • Save Herteby/d9d424e0bf5d853ef5ee392e201c63e5 to your computer and use it in GitHub Desktop.
Save Herteby/d9d424e0bf5d853ef5ee392e201c63e5 to your computer and use it in GitHub Desktop.
See all global variables that a site has added
function getGlobals(){
const result = {...window}
const standard = window.open()
Object.keys(standard).forEach(key => delete result[key])
standard.close()
return result
}
getGlobals()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment