Skip to content

Instantly share code, notes, and snippets.

@thealscott
Created September 4, 2013 09:10
Show Gist options
  • Save thealscott/6434599 to your computer and use it in GitHub Desktop.
Save thealscott/6434599 to your computer and use it in GitHub Desktop.
Safe console snippet
// make it safe to use console.log always
(function(b){
function c(){}
for(var d="assert,clear,count,debug,dir,dirxml,error,exception,firebug,group,groupCollapsed,groupEnd,info,log,memoryProfile,memoryProfileEnd,profile,profileEnd,table,time,timeEnd,timeStamp,trace,warn".split(","),a;a=d.pop();){
b[a]=b[a]||c
}
})((function(){
try
{
console.log();
return window.console;
}catch(err){
return window.console={};
}
})());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment