Created
September 4, 2013 09:10
-
-
Save thealscott/6434599 to your computer and use it in GitHub Desktop.
Safe console snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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