Skip to content

Instantly share code, notes, and snippets.

@keeganbrown
Created May 30, 2013 14:34
Show Gist options
  • Save keeganbrown/9fd0358c0cc9b080c008 to your computer and use it in GitHub Desktop.
Save keeganbrown/9fd0358c0cc9b080c008 to your computer and use it in GitHub Desktop.
nerfConsole.js
// PREVENT 'CONSOLE' ERRORS IN BROWSERS THAT LACK A CONSOLE.
function nerfConsole () {
if ( !(window.console && window.console.log) ) {
var noop = function() {};
var methods = ['assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 'markTimeline', 'profile', 'profileEnd', 'markTimeline', 'table', 'time', 'timeEnd', 'timeStamp', 'trace', 'warn'];
var length = methods.length;
var console = window.console = {};
while (length--) {
console[methods[length]] = noop;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment