Skip to content

Instantly share code, notes, and snippets.

@triple-j
Created March 5, 2015 23:16
Show Gist options
  • Save triple-j/7a3ff599d20b1fbc1113 to your computer and use it in GitHub Desktop.
Save triple-j/7a3ff599d20b1fbc1113 to your computer and use it in GitHub Desktop.
console "polyfill" -- http://stackoverflow.com/a/11638639 (Edgar Villegas Alvarado)
//Ensures there will be no 'console is undefined' errors
window.console = window.console || (function(){
var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile = c.clear = c.exception = c.trace = c.assert = function(s){};
return c;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment