Skip to content

Instantly share code, notes, and snippets.

@AScriver
Created October 7, 2022 18:12
Show Gist options
  • Save AScriver/d6f75600327d72bb44098ec75a9166ac to your computer and use it in GitHub Desktop.
Save AScriver/d6f75600327d72bb44098ec75a9166ac to your computer and use it in GitHub Desktop.
Restores window.console
const i = document.createElement('iframe');
i.style.display = 'none';
document.body.appendChild(i);
window.console = i.contentWindow.console;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment