Skip to content

Instantly share code, notes, and snippets.

@nufaylr
Created June 19, 2013 09:48
Show Gist options
  • Save nufaylr/5813102 to your computer and use it in GitHub Desktop.
Save nufaylr/5813102 to your computer and use it in GitHub Desktop.
Fallback if the console doesn't exist. IE
if (!console) {
var console = {},
func = function () { return false; };
console.log = func;
console.info = func;
console.warn = func;
console.error = func;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment