Skip to content

Instantly share code, notes, and snippets.

@typeofweb
Created November 28, 2012 21:28
Show Gist options
  • Save typeofweb/4164685 to your computer and use it in GitHub Desktop.
Save typeofweb/4164685 to your computer and use it in GitHub Desktop.
Remove console.logs from production
for (var i in window.console) {
if (typeof window.console[i] === "function") {
window.console[i] = function(){return!0}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment