Skip to content

Instantly share code, notes, and snippets.

@Iamscalla
Forked from taitems/Console Capture
Created August 31, 2017 04:23
Show Gist options
  • Select an option

  • Save Iamscalla/2c763a8f5f4f3c848320adf0cee2d2a7 to your computer and use it in GitHub Desktop.

Select an option

Save Iamscalla/2c763a8f5f4f3c848320adf0cee2d2a7 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