Skip to content

Instantly share code, notes, and snippets.

@zeropaper
Created July 23, 2013 10:06
Show Gist options
  • Save zeropaper/6061319 to your computer and use it in GitHub Desktop.
Save zeropaper/6061319 to your computer and use it in GitHub Desktop.
Ensure a console object with the following methods: - info - log - error - debug - trace - group - groupEnd - warn
var console = {};
var methods = 'info log error debug trace group groupEnd warn'.split(' ');
for (var m in methods) {
if (typeof console[methods[m]] !== 'function') {
console[methods[m]] = function(){};
}
}
window.console = console;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment