Skip to content

Instantly share code, notes, and snippets.

@openube
Forked from taitems/Console Capture
Created September 4, 2017 00:19
Show Gist options
  • Save openube/5dbdddda28344b136f4c954ecae44891 to your computer and use it in GitHub Desktop.
Save openube/5dbdddda28344b136f4c954ecae44891 to your computer and use it in GitHub Desktop.
Prevent console.log()s from causing JS errors
if (!window.console) {
window.console = {};
window.console.log = function() {
return false;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment