Skip to content

Instantly share code, notes, and snippets.

@gustavopaes
Created January 3, 2014 19:36
Show Gist options
  • Save gustavopaes/8244962 to your computer and use it in GitHub Desktop.
Save gustavopaes/8244962 to your computer and use it in GitHub Desktop.
Active (or not) console log.
var log = /debug=true/.test(location.search) ? (function(nav) {
// ie
if(/MSIE/.test(nav) === true) return console.log;
return function() {
console.log.apply(console, arguments);
}
})(navigator.userAgent) : function() {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment