Skip to content

Instantly share code, notes, and snippets.

@huobazi
Forked from softprops/console.js
Created July 1, 2011 02:57
Show Gist options
  • Save huobazi/1057785 to your computer and use it in GitHub Desktop.
Save huobazi/1057785 to your computer and use it in GitHub Desktop.
if(!window.console) {
val names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
window.console = {};
for (var i = 0; i < names.length; ++i) {
window.console[names[i]] = function () {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment