Skip to content

Instantly share code, notes, and snippets.

@mrzmyr
Last active December 24, 2015 21:59
Show Gist options
  • Save mrzmyr/6870042 to your computer and use it in GitHub Desktop.
Save mrzmyr/6870042 to your computer and use it in GitHub Desktop.
var env = 'prod';
var dummyConsole = {};
for(var fn in console.__proto__) dummyConsole[fn] = function() {};
if(env === 'prod' && window.console) window.console = dummyConsole;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment