Created
December 25, 2019 22:43
-
-
Save GabeDuarteM/3da41af1fe4d4590a04762a09115166b to your computer and use it in GitHub Desktop.
Displays all global variables created by the current page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (() => { | |
| const iframe = document.createElement('iframe') | |
| iframe.style.display = 'none' | |
| document.body.appendChild(iframe) | |
| const currentWindow = Object.getOwnPropertyNames(window) | |
| const results = currentWindow.filter(prop => !iframe.contentWindow.hasOwnProperty(prop)) | |
| console.log(results) | |
| document.body.removeChild(iframe) | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment