Created
March 5, 2015 23:16
-
-
Save triple-j/7a3ff599d20b1fbc1113 to your computer and use it in GitHub Desktop.
console "polyfill" -- http://stackoverflow.com/a/11638639 (Edgar Villegas Alvarado)
This file contains hidden or 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
//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