Skip to content

Instantly share code, notes, and snippets.

@markcarrrr
Last active August 29, 2015 14:06
Show Gist options
  • Save markcarrrr/3996434ac498e123534c to your computer and use it in GitHub Desktop.
Save markcarrrr/3996434ac498e123534c to your computer and use it in GitHub Desktop.
JavaScript - Disable console.log
// Use snippet below to disable console.X if not supported to prevent JS errors
if(typeof console === 'undefined') {
console = {
log: function() { },
debug: function() { },
table: function() { }
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment